Fork me on GitHub
#hyperfiddle
<
2023-11-24
>
joshcho12:11:46

Possibly a dumb question, but how do I run an event every 100ms? I tried using (int (/ e/system-time-ms 100)) but couldn't figure out how. The event does not depend on the value.

xificurC12:11:36

((fn [_time] (println :event)) (int (/ e/system-time-ms 100)))

❤️ 3
joshcho12:11:51

i feel dumb