8 lines
83 B
Text
8 lines
83 B
Text
add : Int ;
|
|
add = 4;
|
|
|
|
main : Int ;
|
|
main = case add of {
|
|
5 => 0;
|
|
_ => 1;
|
|
};
|