home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / borland / jnfb88.arc / PALPRO.ARC / SALUTE.SC < prev   
Text File  |  1987-10-07  |  165b  |  12 lines

  1. CREATELIB "salute"
  2. PROC hello() 
  3.         ? "Hello, world!" 
  4.         SLEEP 5000 
  5. ENDPROC 
  6.  
  7. WRITELIB "salute" hello 
  8.  
  9. READLIB "salute" hello 
  10.  
  11. hello() 
  12.