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

4 lines
85 B
Text

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