Files
Plasma/tests/functions.pla
SpookyDervish f9cd1dba29 VARIABLESSSS
2025-10-13 21:05:03 +11:00

8 lines
114 B
Plaintext

depend "io.pla"
depend "string.pla"
add = Func(a: Int, b: Int): Int {
return a + b;
}
print(String(add(1, 3)));