In Rave geht nur
ein Ausdruck....
Zitat:
while (i <= iTextLaenge) and (Value[i] <> '$') do begin
Delphi-Quellcode:
while i <= iTextLaenge do
sTempText := sTempText ;
i := i + 1;
end;
ohne begin und ohne "end while"
Scripting Syntax guide
Delphi-Quellcode:
If statement
if condition then
statement(s);
elseif condition then
statement(s);
else
statement(s);
end;
For loop
for index := start to finish do
statement(s);
end;
for index := start downto finish do
statement(s);
end;
While loop
while condition do
statement(s);
end;
Repeat loop
repeat
statement(s);
until condition;
With statement
with object do
statement(s);
end;
Break, Continue and Exit function similar to Delphi.
thomas