11 lines
98 B
Plaintext
11 lines
98 B
Plaintext
main = Func(): Int {
|
|
x: Int = 123;
|
|
|
|
if x == 123 {
|
|
x = 0;
|
|
} unless {
|
|
x = 1;
|
|
}
|
|
|
|
return x;
|
|
} |