Explorar el Código

+ test of FOR statment

mazen hace 22 años
padre
commit
ab4f1c908b
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  1. 9 0
      tests/sparc/test0005.pas

+ 9 - 0
tests/sparc/test0005.pas

@@ -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.