polserver/testsuite/escript/compiler2/compiler2-019-function-call-single-default-param.src
2020-08-13 15:26:09 +02:00

6 lines
111 B
Text

function display(s := "this is the default")
print(s);
endfunction
display();
display("not the default");