polserver/testsuite/escript/compiler2/compiler2-018-function-call-multi-parameter.src
2020-08-13 15:26:09 +02:00

6 lines
91 B
Text

function display(a, b)
print(a);
print(b);
endfunction
display("hello", "world");