-
Notifications
You must be signed in to change notification settings - Fork 556
Open
Labels
Milestone
Description
Proposal
const unit Distance (
mm = 1
cm = 10
dm = 100
m = 1000
)
step 1m // move forward 1 meter
const unit time.Duration (
ns = time.Nanosecond
us = time.Microsecond
µs = time.Microsecond
ms = time.Millisecond
s = time.Second
m = time.Minute
h = time.Hour
d = 24 * time.Hour
)
wait 1s // wait 1 second
wait 1m // wait 1 minute. Note that it does not conflict with `step 1m`.