github.com/nevalang/neva@v0.23.1-0.20240507185603-7696a9bb8dda/std/time/time.neva (about) 1 const { 2 pub nanosecond int = 1 3 pub microsecond int = 1000 4 pub millisecond int = 1000000 5 pub second int = 1000000000 6 pub minute int = 60000000000 7 pub hour int = 3600000000000 8 } 9 10 #extern(time_sleep) 11 pub component Sleep(ns int) (sig int)