added more manual tests
This commit is contained in:
parent
24007313cb
commit
88a4a934b8
6 changed files with 67 additions and 19 deletions
10
sample-programs/basic-7
Normal file
10
sample-programs/basic-7
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue