1
0
forked from GitHub/gf-core
Files
gf-core/src/runtime/haskell/tests/basic.gf

14 lines
161 B
Plaintext

abstract basic = {
cat N; S ;
data z : N ;
s : N -> N ;
data c : N -> S ;
cat P N ;
fun ind : P z -> ((x:N) -> P x -> P (s x)) -> ((x : N) -> P x) ;
}