home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a012 / 1.ddi / CHAP06.EXE / CHP0613A.PRG < prev    next >
Encoding:
Text File  |  1991-04-30  |  521 b   |  20 lines

  1. /*
  2.    Listing 6.13 STATIC Functions
  3.    (use in conjunction with CHP0613B.PRG -- this file must come first!)
  4.    Author: Greg Lief
  5.    Excerpted from "Clipper 5: A Developer's Guide"
  6.    Copyright (c) 1991 M&T Books
  7.                       501 Galveston Drive
  8.                       Redwood City, CA 94063-4728
  9.                       (415) 366-3600
  10. */
  11.  
  12. //───── NOTE: must compile with the /N option!
  13.  
  14. function main 
  15. Whatever() 
  16. Center(16, "Ouch!")   // run-time error 
  17. return nil 
  18.  
  19. // end of file CHP0613A.PRG
  20.