Files
Plasma/tests/test.pla

7 lines
75 B
Plaintext
Raw Normal View History

2025-10-14 21:34:18 +11:00
test = Func(): Int {
return 123;
}
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
}