Files
wren/test/timer/sleep_main_fiber.wren
T

10 lines
179 B
Plaintext
Raw Normal View History

2015-08-08 07:17:30 -07:00
import "timer" for Timer
IO.print("1") // expect: 1
Timer.sleep(3)
IO.print("2") // expect: 2
Timer.sleep(3)
IO.print("3") // expect: 3
Timer.sleep(3)
IO.print("4") // expect: 4