Skip to content

Instantly share code, notes, and snippets.

View mclark1129's full-sized avatar

Mike Clark mclark1129

View GitHub Profile
### Keybase proof
I hereby claim:
* I am mclark1129 on github.
* I am mclark1129 (https://keybase.io/mclark1129) on keybase.
* I have a public key ASBUi3rGPq9odUtUwzrJbqTQWjouKzltjcz2aoncMmcWNgo
To claim this, I am signing this object:
module Transformer where
import Control.Monad.Reader
import Control.Monad.Trans
data Config = Config { filename :: String } deriving (Show)
c = Config { filename = "a.txt" }
loadFile :: ReaderT Config IO String