Monad transformers for the first time :OO

This commit is contained in:
vegowotenks 2025-02-18 17:16:18 +01:00
parent a19bcf0ad5
commit 76c3c3c4fc
6 changed files with 63 additions and 13 deletions

7
src/Ubc/Parse/Syntax.hs Normal file
View file

@ -0,0 +1,7 @@
module Ubc.Parse.Syntax
(Transformer)
where
import Control.Monad.Reader (ReaderT)
import Ubc.Parse.Syntax.Config (Config)
type Transformer = ReaderT Config IO