home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / p / pccts.zip / tutorial / ter.sc < prev    next >
Text File  |  1992-12-08  |  205b  |  23 lines

  1.  
  2. main(in)
  3. {
  4.     var a;
  5.  
  6.     a = "help";
  7.     print f(in);
  8.     print "\n";
  9.     print f();
  10.     print "\n";
  11.     print a;
  12.     print "\n";
  13. }
  14.  
  15. f(arg)
  16. {
  17.     var i;
  18.  
  19.     i = arg;
  20.     print i;
  21.     return "1.3" + "3.0" * "2.2";
  22. }
  23.