mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-29 03:24:02 +03:00
a972778eab
They don't all pass yet, for minor reasons. Coming shortly... Unfortunately the startup overhead for chez is really noticeable here!
13 lines
417 B
Idris
13 lines
417 B
Idris
natElim : (p : Nat -> Type) -> p Z -> ((k : Nat) -> p k -> p (S k)) ->
|
|
(x : Nat) -> p x
|
|
|
|
natElim2 : (p : Nat -> Type) -> p Z -> ((k : Nat) -> p k -> p (S k)) ->
|
|
(x : Nat) -> p x
|
|
natElim2 p x f Z = x
|
|
natElim2 p x f (S k) = ?foo
|
|
|
|
listElim : (p : List a -> Type) ->
|
|
(mnil : p []) ->
|
|
(mcons : (x : _) -> (xs : List a) -> p xs -> p (x :: xs)) ->
|
|
(xs : List a) -> p xs
|