home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
tutor
/
pro30
/
ch02_2b.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1991-02-04
|
294 b
|
20 lines
(* Chapter 2 - Programming exercise 2 *)
program And_My_Name_Again;
begin
Writeln('John Q. Doe ');
Writeln('1234 Main Street ');
Writeln('Littleberg, USA');
end.
{ Result of execution
John Q. Doe
1234 Main Street
Littleberg, USA
}