added more manual tests

This commit is contained in:
sebastianselander 2023-03-22 10:32:22 +01:00
parent 24007313cb
commit 88a4a934b8
6 changed files with 67 additions and 19 deletions

10
sample-programs/basic-7 Normal file
View file

@ -0,0 +1,10 @@
data Bool () where {
True : Bool ()
False : Bool ()
};
ifThenElse : Bool () -> 'a -> 'a -> 'a;
ifThenElse b if else = case b of {
True => if;
False => else
}