home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
PASCAL
/
MADTRB9.ZIP
/
SHOWTIME.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1985-12-12
|
195 b
|
11 lines
Program Show_Time;
{$I time.inc }
begin
clrscr;
gotoxy(1,1);
write('Time: hr:min:sec Press any key to quit');
repeat
showtime;
delay(100);
until keypressed;
end.