polserver/testsuite/escript/compiler2/compiler2-071-exported-function.src
2020-08-13 15:26:09 +02:00

6 lines
84 B
Text

exported function foo(a,b)
print( a + b );
return a+b;
endfunction
foo(3,2);