mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
10 lines
112 B
Text
10 lines
112 B
Text
function foo( a, b,c,d )
|
|
return a*b+c*d;
|
|
endfunction
|
|
|
|
|
|
var a;
|
|
|
|
a := foo( 2, 3.5, 6.7, 9 );
|
|
|
|
print( "A=" + a );
|