home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 6.10 Example of File-wide STATIC Variables
- (use in conjunction with file CHP0610B.PRG)
- Author: Greg Lief
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- //───── NOTE: must compile with the /N option!
-
- function main
- @ 0, 0, maxrow(), maxcol() box replicate("*", 9)
- gsavescrn()
- inkey(2)
- cls
- @ 12, 20 say "You are staring at a mostly empty screen"
- @ 13, 20 say "Press any key to restore previous screen"
- inkey(0)
- grestscrn()
- return nil
-
- // end of file CHP0610A.PRG
-