home *** CD-ROM | disk | FTP | other *** search
/ The Equalizer BBS / equalizer-bbs-collection_2004.zip / equalizer-bbs-collection / BBS-PCBOARD-STUFF / SAC-RD1F.ZIP / EXAMPLE.PPS next >
Text File  |  1996-02-18  |  272b  |  24 lines

  1. ; This is a very simple example!
  2.  
  3. *$USEFUNCS
  4. *$INCLUDE:READ.LIB
  5.  
  6. BEGIN
  7.  
  8. string text(5)
  9. integer i
  10.  
  11.  
  12. ; creates a file , with the name given, in non sharable write mode.
  13. NEWLINES 3
  14.  
  15. text(1)=read(20,23,30,0)
  16.  
  17. newlines 3
  18.  
  19. print text(1)
  20.  
  21. END
  22.  
  23.  
  24.