ref: a74746cf0a22bd451ae9a57f350cbf1c0d7fd3f9
dir: /libstd/now.myr/
use "sys.use" use "types.use" use "fmt.use" pkg std = const now : (-> time) ;; const now = { var tm if clock_gettime(`Clockrealtime, &tm) == 0 -> (tm.sec*1000 + tm.nsec / (1000*1000)) castto(time) else -> -1 ;; }