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

19 lines
No EOL
221 B
Text

function fooa()
var a;
a := 2;
return a;
endfunction
function foob()
var b;
b := 4;
if (b)
var x;
x := 2;
return x;
endif
return b;
endfunction
fooa();
foob();