tinygo/src/runtime/time.go
Ayke van Laethem 62c4c5e90b
go fmt
2018-08-17 23:23:20 +02:00

11 строки
204 Б
Go

package runtime
// TODO: use the time package for this.
type Duration uint64
// Use microseconds as the smallest time unit
const (
Millisecond = Microsecond * 1000
Second = Millisecond * 1000
)