I have been playing with purescript and signals. I have a block of code
runSignal $ (every 2000.0) ~> logShow
which when compiled into a JS file(pulp browserify) as
main = do
runSignal $ (every 2000.0) ~> logShow
and executed on the browser, works as expected(logs something every 2 seconds), but gets stuck on the psci console. Why is this behaviour? Any help would be appreciated.