lean4-htt/tests/lean/let_elim_issue.lean
2017-03-23 14:29:07 -07:00

9 lines
148 B
Text

import system.io
variable [io.interface]
open io
def tst : io unit :=
put_str "hello\n"
>> put_str "world\n"
>> put_str "from Lean\n"
#eval tst