timeok
Structure
importtime:lib/time.mq.md
fn · h1main
comment
bind
`s` = [time.format] unix=0 pattern=%Y-%m-%dcall
> 打印 内容=`s`bind
`u` = [time.parse] text=1970-01-01 00:00:00 pattern=%Y-%m-%d %H:%M:%Scall
> 打印 内容=`u`call
[time.sleep_ms] ms=0Functions
Variables
-
s text1970-01-011970-01-01
-
u int00
Execution
1970-01-01
0
Source
--- title: lib/time — clock description: Unix time, format, parse, sleep import time:lib/time.mq.md --- # main Unix time helpers from lib/time. Patterns use strftime. **`s` = [time.format] unix=0 pattern="%Y-%m-%d"** **打印 内容=`s`** **`u` = [time.parse] text="1970-01-01 00:00:00" pattern="%Y-%m-%d %H:%M:%S"** **打印 内容=`u`** **[time.sleep_ms] ms=0**
Unix time helpers from lib/time. Patterns use strftime.