diff --git a/GOL/Engine.hs b/GOL/Engine.hs new file mode 100644 index 0000000..c07b024 --- /dev/null +++ b/GOL/Engine.hs @@ -0,0 +1,13 @@ +{-# LANGUAGE ScopedTypeVariables #-} +{-# LANGUAGE TypeApplications #-} + +module GOL.Engine where + +import Control.Comonad.Env +import Control.Comonad.Representable.Store +import Data.Bool (bool) +import GOL.Rule +import GOL.Space + +type GOL f = EnvT Rule (Store f) +