mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-10 15:42:21 +00:00
11 lines
218 B
Haskell
Executable file
11 lines
218 B
Haskell
Executable file
#!/usr/bin/env stack
|
|
-- stack runghc --package reanimate
|
|
module Main (main) where
|
|
|
|
import Reanimate
|
|
|
|
main :: IO ()
|
|
main = reanimate $ mkAnimation dur $
|
|
mkCircle . fromToS 0 (dur*60-1)
|
|
where
|
|
dur = 2
|