Files
Plasma/tests/test.pla

11 lines
98 B
Plaintext
Raw Normal View History

2025-10-14 07:14:53 +11:00
main = Func(): Int {
x: Int = 123;
if x == 123 {
x = 0;
} unless {
x = 1;
}
return x;
2025-10-14 07:14:53 +11:00
}