DEADSOFTWARE

Добавлена конструкция IF-THEN-ELSE-END
[dsw-obn.git] / src / test.c
index 125c5df07d2f017942479ff9a7ed5e979f86b4f2..a144f3616074e1f8891dbc30af0007420bad0ef9 100644 (file)
@@ -8,34 +8,51 @@ static char source_test[] =
        "(* Main module *)"
        "MODULE Test;"
        "IMPORT Out;"
-       "TYPE"
-       "  RecA = POINTER TO RecADesc;"
-       "  RecADesc = RECORD END;"
        ""
-       "  RecB = POINTER TO RecBDesc;"
-       "  RecBDesc = RECORD (RecADesc) END;"
+       "TYPE"
+       "  R = INTEGER;"
        ""
-       "VAR"
-       "  pra : RecA;"
-       "  prb : RecB;"
-       "  ra  : RecADesc;"
-       "  rb  : RecBDesc;"
+       "PROCEDURE Factorial(n : R) : R;"
+       "BEGIN"
+       "  IF n <= 1 THEN"
+       "    RETURN 1;"
+       "  ELSE"
+       "    RETURN n * Factorial(n - 1);"
+       "  END;"
+       "  RETURN 0; (* Детектор ретурнов - дерьмо *)"
+       "END Factorial;"
        ""
        "BEGIN"
-       "  pra := prb;"
-       "  prb := pra(RecB);"
-       "  ra := prb^;"
+       "  Out.Open();"
+       "  Out.Int(Factorial(0), 0); Out.Ln;"
+       "  Out.Int(Factorial(1), 0); Out.Ln;"
+       "  Out.Int(Factorial(2), 0); Out.Ln;"
+       "  Out.Int(Factorial(3), 0); Out.Ln;"
+       "  Out.Int(Factorial(4), 0); Out.Ln;"
+       "  Out.Int(Factorial(5), 0); Out.Ln;"
+       "  Out.Int(Factorial(6), 0); Out.Ln;"
+       "  Out.Int(Factorial(7), 0); Out.Ln;"
+       "  Out.Int(Factorial(8), 0); Out.Ln;"
+       "  Out.Int(Factorial(9), 0); Out.Ln;"
+       "  Out.Int(Factorial(10), 0); Out.Ln;"
+       "  Out.Int(Factorial(11), 0); Out.Ln;"
+       "  Out.Int(Factorial(12), 0); Out.Ln;"
+       "  Out.Int(Factorial(13), 0); Out.Ln;"
+       "  Out.Int(Factorial(14), 0); Out.Ln;"
        "END Test."
 ;
 
-// PROCEDURE Char* (ch : CHAR);
-// PROCEDURE String* (str : ARRAY OF CHAR);
-
 static char source_out[] =
        "MODULE Out;"
        "  PROCEDURE Open*;"
        "  END Open;"
        ""
+       "  PROCEDURE Char* (ch : CHAR);"
+       "  END Char;"
+       ""
+       "  PROCEDURE String* (str : ARRAY OF CHAR);"
+       "  END String;"
+       ""
        "  PROCEDURE Int*(i, n : LONGINT);"
        "  END Int;"
        ""