Create GOL.Engine

This commit is contained in:
Kiana Sheibani 2021-12-20 15:23:12 -05:00
parent a1aca4807f
commit 0bd6719a8d

13
GOL/Engine.hs Normal file
View file

@ -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)