// retoor <retoor@molodetz.nl>
|
|
|
|
import "sysinfo" for SysInfo
|
|
|
|
var t1 = SysInfo.hrtime
|
|
var t2 = SysInfo.hrtime
|
|
System.print(t1 is Num) // expect: true
|
|
System.print(t2 is Num) // expect: true
|
|
System.print(t2 >= t1) // expect: true
|