// Time functions define float a = 1.0 define float i = 1.0 define float s = 0.0 define float t = 0.0 // get current time print "start time: "time() for 4 do set i = i * 10 for 5 do for i do set a = a * 1 end print "current time: "time() i "operations" end print "" // wait for keyboard entry wait() end print "current time: "time() // wait for a scheduled time print "" wait(3.5) print "current time: "time() print "========= test_time passed OK" quit