mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
- Added missing ones - Reviewed obsoleted ones - Disabled/deleted unnecessary ones - Added support for compile error checking - Added support for run error checking
15 lines
No EOL
183 B
Text
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 |