home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume2 / pstrings / part01 / newS.p < prev    next >
Encoding:
Text File  |  1991-08-07  |  145 b   |  14 lines

  1.  
  2.  
  3.  
  4.  
  5. # include "strings.h"
  6.  
  7. procedure newS{(var s: String)};
  8. {
  9. * Initialises s to be the empty or null string ''
  10. }
  11. begin
  12.     s := nil
  13. end{ -- newS};
  14.