churf/sample-programs/basic-6
2023-03-22 10:32:22 +01:00

10 lines
142 B
Text

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