home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Oakland CPM Archive
/
oakcpm.iso
/
sigm
/
vol094
/
hold.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
|
1984-04-29
|
147 b
|
13 lines
program hold;
var
c : char;
begin
repeat
write('Press X key to continue.');
read(c);
until ( c = 'x' ) or ( c = 'X' )
end.