mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-12-19 10:51:35 +03:00
My first attempt at refolding natural constants led to all names being printed with their namespace prefixes. This fixes that, most notably by introducing the massive `mapPTermM` function in `Idris.Syntax`.
9 lines
278 B
Plaintext
9 lines
278 B
Plaintext
1/1: Building IEdit (IEdit.lidr)
|
|
Main> > append {n = 0} [] ys = ?foo_1
|
|
> append {n = (S k)} (x :: xs) ys = ?foo_2
|
|
Main> > vadd [] [] = ?bar_1
|
|
Main> > vadd (x :: xs) (y :: ys) = ?baz_1
|
|
Main> > suc x x Refl = ?quux_1
|
|
Main> > suc' {x = y} {y = y} Refl = ?quuz_1
|
|
Main> Bye for now!
|