ipso icon indicating copy to clipboard operation
ipso copied to clipboard

Replace metas with named type variables in REPL

Open LightAndLight opened this issue 3 years ago • 0 comments

When :type returns a type containing metavariables, they appear in the printed output.

e.g.

> :type \x y -> x
?0 -> ?1 -> ?0

in Repl::type_of, rename the replace the metavariables with type variables. The above example should return something like a -> b -> a.

LightAndLight avatar May 13 '22 22:05 LightAndLight