lean4-htt/tests/compiler/module.lean
2026-01-24 15:18:33 +00:00

11 lines
222 B
Text

module
public meta import Lean
/-! Binary size should be independent of `meta` import closure. -/
elab "mk_str" : term =>
return Lean.mkStrLit "world!"
public def main : IO Unit :=
IO.println ("Hello, " ++ mk_str)