churf/sample-programs/basic-6
2023-03-22 12:45:51 +01:00

10 lines
141 B
Text

data Bool () where {
True : Bool ()
False : Bool ()
};
main : Bool () -> Int ;
main b = case b of {
False => 0;
True => 0
}