home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / m / mod2tutr.zip / EXAMPLES.ZIP / CH02E2.MOD < prev    next >
Text File  |  1989-01-18  |  393b  |  28 lines

  1.                             (* Chapter 2 - Programming exercise 2 *)
  2. MODULE CH02E2;
  3.  
  4. FROM InOut IMPORT WriteString, WriteLn;
  5.  
  6. BEGIN
  7.  
  8.    WriteString("John Doe");
  9.    WriteLn;
  10.    WriteString("1234 Main Street");
  11.    WriteLn;
  12.    WriteString("Littleburg, NY 01254");
  13.    WriteLn;
  14.  
  15. END CH02E2.
  16.  
  17.  
  18.  
  19.  
  20. (* Result of execution
  21.  
  22. John Doe
  23. 1234 Main Street
  24. Littleburg, NY 01254
  25.  
  26. *)
  27.  
  28.