polserver/testsuite/escript/func/func011-default-parameter-bare-function-call.src

10 lines
106 B
Text
Raw Permalink Normal View History

use math;
// "Only simple operands..."
function foo( x := ConstPi() )
print( x );
endfunction
foo();