// Displays the time in a graph window
graph width=4,height=1.5,bgcolor=(0,200,200)
graph nogrid,noaxes
tt$ = time$  	// sets text string to current time
text size=70,string=tt$,v=35  // display string on graph
100 delay 100	// delay 100 millisec
updatedatetime	// get new time
if tt$ = time$  goto 100 // if time has not changed
tt$ = time$	// refresh value to be displayed
//  Note: graph will change the next time it is updated
graph nogrid    // force the graph to update
goto 100	// continue waiting

// Note - you can minimize quickcalc and shrink the 
// "clock" window to have a little digital clock on
// the screen while you do other things. Note, however,
// that this graph will always be on top, since it is
// continually being updated.

// Using this same technique, you could also build a
// "countdown" clock for New Years Eve or other events.