X-Git-Url: http://deadsoftware.ru/gitweb?p=dsw-obn.git;a=blobdiff_plain;f=src%2Ftest.c;h=549e5eaa69e890f6c70b2c053474152028f2f571;hp=cacf00d30d71189e19360a4b2467ba052f037858;hb=cbfeec1f4192adbd7adb494ef79447366f051c20;hpb=86c0ca1aafd465a3e0d4a9d6b1af661eba483ae1 diff --git a/src/test.c b/src/test.c index cacf00d..549e5ea 100644 --- a/src/test.c +++ b/src/test.c @@ -4,52 +4,22 @@ #include "../include/oberon.h" -/* static char source_test[] = "(* Main module *)" "MODULE Test;" "IMPORT Out;" - "VAR" - " msg : ARRAY 20 OF CHAR;" - "BEGIN" - " msg := ''" - "END Test." -; -*/ - -static char source_test[] = - "(* Main module *)" - "MODULE Test;" - "IMPORT Out;" - "CONST" - " helloworld = 'Hello World!';" - " null = 0X;" - " space = 020X;" - " bang = 021X;" - " h = 048X;" - " e = 045X;" - " l = 04CX;" - " o = 04FX;" - " w = 057X;" - " r = 052X;" - " d = 044X;" - "" - "TYPE" - " Ident = ARRAY 20 OF CHAR;" - " PrintString = PROCEDURE (str : ARRAY OF CHAR);" "" "VAR" - " msg : Ident;" - " print : PrintString;" + " i : INTEGER;" "" "BEGIN" - " msg := helloworld;" - " print := Out.String;" - " Out.Open;" - " print(msg);" - " Out.Ln;" - " print(\"It's works!\");" - " Out.Ln;" + " i := 0;" + " Out.Open();" + " WHILE i < 4 DO" + " Out.String('Count '); Out.Int(i, 0); Out.Ln;" + " i := i + 1;" + " END;" + " Out.String('end'); Out.Ln;" "END Test." ;