home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 6.13 STATIC Functions
- (use in conjunction with CHP0613B.PRG -- this file must come first!)
- 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
- Whatever()
- Center(16, "Ouch!") // run-time error
- return nil
-
- // end of file CHP0613A.PRG
-