Files
Plasma/tests/test.pla

8 lines
96 B
Plaintext
Raw Normal View History

add = Func(a: Int, b: Int): Int {
return a + b;
2025-10-14 21:34:18 +11:00
}
2025-10-14 07:14:53 +11:00
main = Func(): Int {
add(1,2);
return x;
2025-10-14 07:14:53 +11:00
}