+ test of FOR statment

This commit is contained in:
mazen 2003-04-29 08:04:30 +00:00
parent cf68b27bb9
commit ab4f1c908b

9
tests/sparc/test0005.pas Normal file
View File

@ -0,0 +1,9 @@
{$UNITPATH ../../rtl/linux}
{$INCLUDEPATH ../../rtl/unix;../../rtl/inc;../../rtl/unix;../../rtl/sparc}
PROGRAM SparcTest;
VAR
i:Integer;
BEGIN
FOR i:=0 TO MaxInt DO
WriteLn(i);
END.