churf/sample-programs/basic-1.crf
2023-03-26 18:38:07 +02:00

9 lines
No EOL
118 B
Text

data True() where {
True: True()
};
main: Int;
main =
case True of {
True => 1;
_ => 0;
};