X-Git-Url: http://deadsoftware.ru/gitweb?p=dsw-obn.git;a=blobdiff_plain;f=src%2Ftest.c;h=42fc4ff3030a00a18b2b673141cc0f7137f2a1fc;hp=a144f3616074e1f8891dbc30af0007420bad0ef9;hb=99fa357db44a4c30957bd0810e14a20456c58347;hpb=51a1ab2543ec5c221d4a3a9ab89968ae7dd39981 diff --git a/src/test.c b/src/test.c index a144f36..42fc4ff 100644 --- a/src/test.c +++ b/src/test.c @@ -9,36 +9,17 @@ static char source_test[] = "MODULE Test;" "IMPORT Out;" "" - "TYPE" - " R = INTEGER;" - "" - "PROCEDURE Factorial(n : R) : R;" - "BEGIN" - " IF n <= 1 THEN" - " RETURN 1;" - " ELSE" - " RETURN n * Factorial(n - 1);" - " END;" - " RETURN 0; (* Детектор ретурнов - дерьмо *)" - "END Factorial;" + "VAR" + " i, len : INTEGER;" "" "BEGIN" " 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;" + " len := 2 * 8;" + " FOR i := 0 TO len BY 2 DO" + " Out.String('Count '); Out.Int(i, 0); Out.Ln;" + " len := len + 2;" + " END;" + " Out.String('end'); Out.Ln;" "END Test." ;