2019-10-14 19:39:09 +02:00
|
|
|
# Time and Date
|
|
|
|
|
|
|
|
The `clock:` namespace contains words for interacting with the
|
|
|
|
system clock.
|
|
|
|
|
|
|
|
~~~
|
|
|
|
{{
|
2019-12-09 20:37:26 +01:00
|
|
|
'Clock var
|
2019-10-14 19:39:09 +02:00
|
|
|
:identify
|
2019-12-09 20:37:26 +01:00
|
|
|
@Clock n:zero? [
|
2019-10-14 19:39:09 +02:00
|
|
|
#5 io:scan-for dup n:negative?
|
|
|
|
[ drop 'IO_DEVICE_TYPE_0005_NOT_FOUND s:put nl ]
|
2019-12-09 20:37:26 +01:00
|
|
|
[ !Clock ] choose ] if ;
|
2019-10-14 19:39:09 +02:00
|
|
|
---reveal---
|
2020-09-16 21:45:47 +02:00
|
|
|
:clock:operation identify @Clock io:invoke ;
|
2019-10-14 19:39:09 +02:00
|
|
|
}}
|
|
|
|
|
2020-09-16 21:45:47 +02:00
|
|
|
:clock:timestamp (-n) #0 clock:operation ;
|
|
|
|
:clock:day (-n) #1 clock:operation ;
|
|
|
|
:clock:month (-n) #2 clock:operation ;
|
|
|
|
:clock:year (-n) #3 clock:operation ;
|
|
|
|
:clock:hour (-n) #4 clock:operation ;
|
|
|
|
:clock:minute (-n) #5 clock:operation ;
|
|
|
|
:clock:second (-n) #6 clock:operation ;
|
|
|
|
:clock:utc:day (-n) #7 clock:operation ;
|
|
|
|
:clock:utc:month (-n) #8 clock:operation ;
|
|
|
|
:clock:utc:year (-n) #9 clock:operation ;
|
|
|
|
:clock:utc:hour (-n) #10 clock:operation ;
|
|
|
|
:clock:utc:minute (-n) #11 clock:operation ;
|
|
|
|
:clock:utc:second (-n) #12 clock:operation ;
|
2019-10-14 19:39:09 +02:00
|
|
|
~~~
|