Extract Date & Time from the eWON

See how to extract the date and time using eWON's BASIC.

Clock:
A$ = Time$
Print A$
H% = Val(A$(12 To 13))
M% = Val(A$(15 To 16))
D% = Val(A$(1 To 2))
Z% = Val(A$(4 To 5))
Y% = Val(A$(7 To 10))
Print "Current Hour : " ; H%
Print "Current Minute : " ; M%
Print "Current Day : " ; D%
Print "Current Month : " ; Z%
Print "Current Year : " ; Y% 
END