mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2025-01-05 11:32:15 +03:00
e6292acdf0
This involved implementing the 'TryWithImplicits' hack for allowing unbound implicits in types with case blocks
9 lines
308 B
Plaintext
9 lines
308 B
Plaintext
1/1: Building IEdit (IEdit.idr)
|
|
Welcome to Idris 2 version 0.0. Enjoy yourself!
|
|
Main> natElim p x f Z = x
|
|
natElim p x f (S k) = f k (natElim p x f k)
|
|
Main> f k (natElim2 p x f k)
|
|
Main> listElim p mnil mcons [] = mnil
|
|
listElim p mnil mcons (x :: xs) = mcons x xs (listElim p mnil mcons xs)
|
|
Main> Bye for now!
|