home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
w3_prog
/
lbas09p2.arj
/
CLOCK.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
BASIC Source File
|
1992-03-02
|
237 b
|
16 lines
'This program creates a clock display
'To quit this program, type CTRL-C
[loop]
time$ = time$()
print date$(); " - "; time$ ;
[wait]
if time$ <> time$() then cls : goto [loop]
goto [wait]