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

10 lines
No EOL
143 B
Text

program foo( )
print( "hello world" );
print( "bar: " + bar() );
return;
endprogram
function bar()
return "rab";
endfunction