home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lifeos2.zip / LIFE-1.02 / LIB / IO.LF < prev    next >
Text File  |  1996-06-04  |  387b  |  22 lines

  1. %    $Id: io.lf,v 1.2 1994/12/08 23:58:13 duchier Exp $    
  2. module("io") ?
  3.  
  4. add_man(io,
  5.     "module(""io"")
  6.  
  7.          contains io utilities.") ?
  8.  
  9. public(writeln)?
  10.  
  11. add_man(writeln,
  12.      " writeln(args...):
  13.        input: a variable numbers of arguments
  14.  
  15.        outputs its arguments on the standard output using ""write"", 
  16.        followed by a new line.") ? 
  17. C:writeln :-
  18.     write&strip(C),
  19.     nl.
  20.  
  21.  
  22.