home *** CD-ROM | disk | FTP | other *** search
/ Ultimate Game Collection / XULTI.ISO / 396 / expr.rpp < prev    next >
Text File  |  1996-10-19  |  198b  |  15 lines

  1. { expression and strings }
  2.  
  3. var s: string;
  4. var n: number;
  5.  
  6. n := 100;
  7. s := "This is a test";
  8.  
  9. println(s);
  10. println(n);
  11.  
  12. println("I am the " + "Man!");
  13.  
  14. println( ((4*5) / 2) + (100/2));
  15.