mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-11 06:14:41 +03:00
7 lines
169 B
Plaintext
7 lines
169 B
Plaintext
1/1: Building PlusPrf (PlusPrf.idr)
|
|
Main> plusZ 0 = Refl
|
|
plusZ (S k) = mycong S (plusZ k)
|
|
Main> plusS 0 m = Refl
|
|
plusS (S k) m = mycong S (plusS k m)
|
|
Main> Bye for now!
|