marqdo

timeok

stdlib/time.mq.md

Structure

importtime:lib/time.mq.md
fn · h1main
comment

Unix time helpers from lib/time. Patterns use strftime.

bind `s` = [time.format] unix=0 pattern=%Y-%m-%d
call> 打印 内容=`s`
bind `u` = [time.parse] text=1970-01-01 00:00:00 pattern=%Y-%m-%d %H:%M:%S
call> 打印 内容=`u`
call[time.sleep_ms] ms=0
Functions
Variables
  • s text
    1970-01-01
  • u int
    0

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**

Variable