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 / CH02E1.MOD < prev    next >
Text File  |  1989-01-18  |  249b  |  22 lines

  1.                             (* Chapter 2 - Programming exercise 1 *)
  2. MODULE CH02E1;
  3.  
  4. FROM InOut IMPORT WriteString, WriteLn;
  5.  
  6. BEGIN
  7.  
  8.    WriteString("John Doe");
  9.    WriteLn;
  10.  
  11. END CH02E1.
  12.  
  13.  
  14.  
  15.  
  16. (* Result of execution
  17.  
  18. John Doe
  19.  
  20. *)
  21.  
  22.