Files
Plasma/tests/test.pla
2025-10-14 20:02:22 +11:00

11 lines
98 B
Plaintext

main = Func(): Int {
x: Int = 123;
if x == 123 {
x = 0;
} unless {
x = 1;
}
return x;
}