home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 6.12 LOCAL overriding STATIC
- 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 /N compiler option
-
- static counter := 0
-
- function main
- local counter := 1 // whoops! forgot to delete this one
- ? counter // 1 -- looking at the LOCAL
- myfunc()
- return nil
-
-
- function myfunc
- ? counter // 0 -- looking at the STATIC
- return nil
-
- // end of file CHP0612.PRG
-