polserver/testsuite/escript/func/func06.src
2015-12-19 02:31:08 +01:00

9 lines
133 B
Text

function bar()
print( "bar" );
endfunction
function foo( a := bar(), b := "blah" )
print( a + " " + b );
endfunction
foo()