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

9 lines
No EOL
128 B
Text

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