lean4-htt/tests/lean/run/instuniv.lean
2022-10-24 12:23:13 -07:00

14 lines
459 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])
IO.println (info.instantiateValueLevelParams! [levelZero])
| none => IO.println "Array.foldl not found"
#eval tst