polserver/testsuite/escript/misc/lst003.src
Gabriele Tozzi e085b218f6 Unit tests: full revision, now all run correctly
- Added missing ones
- Reviewed obsoleted ones
- Disabled/deleted unnecessary ones
- Added support for compile error checking
- Added support for run error checking
2015-12-19 05:31:23 +01:00

15 lines
No EOL
183 B
Text

print( "hello" );
var a,b;
b := len(a);
program prog( parama )
var x := foo();
x := "hello";
print(x);
endprogram
function foo()
var a := 5;
a := 7;
endfunction