RETURNS THE CURRENT TIME
ACTION
The system variable TIME$ returns the current time in a string formatted HH:MM:SS with HH for the hours, MM for the minutes and SS for the seconds.
Remark: the keyword TIME$ ends by '$' because the returned value is a string.
SYNTAX:
TIME$ in an expression
USE ERROR EXAMPLE
print "current time "+time$
print "current hour "+str$(time_hour)
print "current minute "+str$(time_minute)
print "current second "+str$(time_second)
TIME$
TIME$
SEE ALSO
DATE$
DATE_YEAR
DATE_MONTH
DATE_DAY