9 lines
145 B
Text
9 lines
145 B
Text
data Bool () where {
|
|
True : Bool ()
|
|
False : Bool ()
|
|
};
|
|
|
|
main = case True of {
|
|
True => 1;
|
|
False => 0;
|
|
};
|