Files
Plasma/tests/test.pla

8 lines
117 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 {
2025-10-15 07:48:38 +11:00
print("apples %i", add(2, 3));
return 0;
2025-10-14 07:14:53 +11:00
}