lean4-htt/tests/lean/run/readerThe.lean
2020-10-25 09:16:38 -07:00

20 lines
331 B
Text

abbrev M := ReaderT String $ StateT Nat $ ReaderT Bool $ IO
def f : M Nat := do
let s ← read
IO.println s
let b ← readThe Bool
IO.println b
let s ← get
pure s
#eval (f "hello").run' 10 true
def g : M Nat :=
let a : M Nat := withTheReader Bool not f
withReader (fun s => s ++ " world") a
#eval (g "hello").run' 10 true