lox/jlox/tests/function_tests.lox

5 lines
56 B
Plaintext

fun add(a,b,c) {
return a + b + c;
}
print add(1,2,3);