From 0bd6719a8d2adaae3d064d549adeea0b794cf569 Mon Sep 17 00:00:00 2001 From: kiana-S Date: Mon, 20 Dec 2021 15:23:12 -0500 Subject: [PATCH] Create GOL.Engine --- GOL/Engine.hs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 GOL/Engine.hs 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) +