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

14 lines
403 B
Text

import Lean
open Lean
unsafe def tst : IO Unit :=
withImportModules [{module := `Init.Data.Array}] {} 0 fun env =>
match env.find? `Array.foldl with
| some info => do
IO.println (info.instantiateTypeLevelParams [levelZero, levelZero]);
IO.println (info.instantiateValueLevelParams [levelZero, levelZero]);
pure ()
| none => IO.println ("Array.foldl not found")
#eval tst