Time Statements
WAIT _ MILLISECONDS / WAIT _ / SLEEP _
The WAIT (or SLEEP) statement pauses the execution of a program for the given number of milliseconds.
Syntax:
1 2 3 4 5 | |
get year in _
The get year in _ stores the current year number in the passed number variable.
Syntax:
1 | |
get month in _
The get month in _ stores the current month number (1 - 12) in the passed number variable.
Syntax:
1 | |
get day in _
The get day in _ stores the current day of the month (1 - 31) in the passed number variable.
Syntax:
1 | |
get hour in _
The get hour in _ stores the current hour in the passed number variable.
Syntax:
1 | |
get minutes in _
The get minutes in _ stores the current minutes in the passed number variable.
Syntax:
1 | |
get seconds in _
The get seconds in _ stores the current seconds in the passed number variable.
Syntax:
1 | |
get epoch in _
The get epoch in _ stores the current Unix time (the number of seconds that
have elapsed since the Unix epoch, that is the time 00:00:00 UTC on 1 January
1970) in the passed number variable.
Syntax:
1 | |
get elapsed milliseconds in _
The get elapsed milliseconds in _ stores the number of elapsed milliseconds since the program start in the passed number variable.
Syntax:
1 | |