home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / PP002.ZIP / EX1.PRG < prev    next >
Text File  |  1991-04-11  |  577b  |  13 lines

  1. Program Test;
  2. { This is a sample program for the SIMPLE+ compiler
  3.   Requires version 0.12 or later
  4.  
  5.   Comments go inside braces...
  6. }
  7. VAR                   { variable definitions                          }
  8.   a : integer;        { all variables are assumed integer (for now)   }
  9. begin                 { begin..end  - block statement                 }
  10.   a := 1;             { assignment                                    }
  11.   WriteLn(A);         { write value of a, followed by CR/LF           }
  12. end.                  { period ends program                           }
  13.