Blocks
identifier
…
end
ignore
don’t
end
process
doit
end
// Program part
sub test
…
endtest
// Procedures with own var instance
procedure test
…
endtest
// Functions with own var instance
function get // not yet implemented
…
enda := get // works internal
// Namespace
with io
file.copy
end
// See conditions for
then … end
if.then … end
if.true … end
else … end
if.else … end
if.false … end
// See loops for
for … end
while … end
repeat … until
// See output for
store … end
append … end
output.store … end
output.append … end