Files
Plasma/tests/test.pla

8 lines
90 B
Plaintext
Raw Normal View History

2025-10-14 21:34:18 +11:00
test = Func(): Int {
2025-10-15 06:59:29 +11:00
x: Int = 3;
return x + 2;
2025-10-14 21:34:18 +11:00
}
2025-10-14 07:14:53 +11:00
main = Func(): Int {
2025-10-14 21:34:18 +11:00
return test();
2025-10-14 07:14:53 +11:00
}