ea8e12d32a
FossilOrigin-Name: 6a7ee82ed6b024ee1d8f7a51a9b91a66a8041cde06b53cce649d6bd383ae9677
31 lines
996 B
Text
31 lines
996 B
Text
# Time and Date
|
|
|
|
The `clock:` namespace contains words for interacting with the
|
|
system clock.
|
|
|
|
~~~
|
|
{{
|
|
'io:ClockSyscall var
|
|
:identify
|
|
@io:ClockSyscall n:zero? [
|
|
#5 io:scan-for dup n:negative?
|
|
[ drop 'IO_DEVICE_TYPE_0005_NOT_FOUND s:put nl ]
|
|
[ !io:ClockSyscall ] choose ] if ;
|
|
---reveal---
|
|
:io:clock-operation identify @io:ClockSyscall io:invoke ;
|
|
}}
|
|
|
|
:clock:timestamp (-n) #0 io:clock-operation ;
|
|
:clock:day (-n) #1 io:clock-operation ;
|
|
:clock:month (-n) #2 io:clock-operation ;
|
|
:clock:year (-n) #3 io:clock-operation ;
|
|
:clock:hour (-n) #4 io:clock-operation ;
|
|
:clock:minute (-n) #5 io:clock-operation ;
|
|
:clock:second (-n) #6 io:clock-operation ;
|
|
:clock:utc:day (-n) #7 io:clock-operation ;
|
|
:clock:utc:month (-n) #8 io:clock-operation ;
|
|
:clock:utc:year (-n) #9 io:clock-operation ;
|
|
:clock:utc:hour (-n) #10 io:clock-operation ;
|
|
:clock:utc:minute (-n) #11 io:clock-operation ;
|
|
:clock:utc:second (-n) #12 io:clock-operation ;
|
|
~~~
|