Login
7 branches 0 tags
Ben (X13/Arch) Simplified sr.ht CI 01e1484 3 years ago 930 Commits
nujel / tests / clock.nuj
#!/usr/bin/env nujel

#|
 | This is just a simple program that can be used to test the accuracy of the clock
 |#

[def next-tick [+ [time/milliseconds] 1000]]
[def tick-tock #t] ; Just a simple comment
[def test @[]]
[tree/set! test :asd 123]
[while #t
       [while [< [time/milliseconds] next-tick]]
       [if tick-tock
           [println "\"Tick\""]
           [println "Tock"]]
       [set! tick-tock [not tick-tock]]
       [set! next-tick [+ [time/milliseconds] 1000]]]