concurrent
elm
FRP
A-FRP
haskell
Elm-lang
functional
reactive
reactive-functional
GUI
Animation
concurrent
ArrowizedFRP
elmでやってみるシリーズ1: ●を動かす。 import Window pos : Signal Int pos =let f = \tmp -> (tmp `mod` 30) - 10 in f <~ foldp (\it acc-> acc + 1) 0 (fps 50) drawCircle : Float -> Float -> Form drawCircle x y = move (x,y) <| filled red (circl…