home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Overload
/
ShartewareOverload.cdr
/
progm
/
m2t-2.zip
/
WRITESM.MOD
< prev
Wrap
Text File
|
1989-01-18
|
604b
|
33 lines
MODULE WriteSm;
FROM InOut IMPORT WriteLn, WriteString;
BEGIN
WriteString("This line will be displayed on the monitor.");
WriteLn;
WriteString('This line will be displayed too.');
WriteLn;
WriteString("This will all be ");
WriteString('on one line.');
WriteLn;
WriteString('She said, "I ');
WriteString("don't ");
WriteString('like dogs."');
WriteLn;
END WriteSm.
(* Result of execution
This line will be displayed on the monitor.
This line will be displayed too.
This will all be on one line.
She said, "I don't like dogs."
*)