lazarus/components/PascalScript/Samples/Import/casetest.rops
martin b65dc1ef59 Adding PascalScript from REM Objects
git-svn-id: trunk@38401 -
2012-08-27 11:02:51 +00:00

12 lines
162 B
Plaintext

Program IFSTest;
var
b: Byte;
Begin
for b := 0 to 2 do begin
case b of
0: writeln('0');
1: writeln('1');
else writeln('>1');
end;
end;
End.