mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-09 15:12:21 +00:00
11 lines
269 B
Haskell
Executable file
11 lines
269 B
Haskell
Executable file
#!/usr/bin/env stack
|
|
-- stack runghc --package reanimate
|
|
module Main (main) where
|
|
|
|
import Reanimate
|
|
import qualified Data.Text as T
|
|
|
|
main :: IO ()
|
|
main = reanimate $ animate $ const $
|
|
mkText $ T.pack $ "Test parameters: " ++ show (pFPS, pWidth, pHeight)
|
|
|