polserver/testsuite/escript/func/func05.src
2020-06-10 22:39:04 -07:00

6 lines
104 B
Text

const BAR := 6;
function foo( a := BAR / 3, b := "blah" )
print( a + " " + b );
endfunction
foo();