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

13 lines
205 B
Text

use os;
function foo( p1, p2 := 0 )
print( p1 );
print( p2 );
endfunction
program test( who, input )
who := "a";
input := "b";
var t := foo( input {who,input} );
print( t );
endprogram