home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CP/M
/
CPM_CDROM.iso
/
simtel
/
sigm
/
vols000
/
vol094
/
hold.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1984-04-29
|
147b
|
13 lines
program hold;
var
c : char;
begin
repeat
write('Press X key to continue.');
read(c);
until ( c = 'x' ) or ( c = 'X' )
end.