conways-game-of-life/GOL/Engine.hs

14 lines
259 B
Haskell
Raw Normal View History

2021-12-20 15:23:12 -05:00
{-# 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)