Added .crf to every sample-program

This commit is contained in:
Samuel Hammersberg 2023-03-26 18:38:07 +02:00
parent 9ea3a3dc56
commit ccfae19541
10 changed files with 23 additions and 23 deletions

View file

@ -1,14 +0,0 @@
data List (a) where {
Nil : List (a)
Cons : a -> List (a) -> List (a)
};
test xs = case xs of {
Cons Nil _ => 0 ;
};
List a /= List (List a)
a /= List a