home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
pascal
/
pascsrc.arc
/
PASCOMS.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1988-01-15
|
451b
|
16 lines
program Lots_Of_Comments;
begin { This is the start of the main program }
(* This is a comment that is ignored by the Pascal compiler *)
{ This is also ignored }
Writeln('I am in Pascal school, Dad'); (* Comment *)
Writeln('All students are always broke'); {Comment}
(*
Writeln('Send money');
Writeln('Send money');
*)
Writeln('I am really getting hungry');
end. (* This is the end of the main program *)