X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Ftest.c;h=25497b0d22502b0bb7c806ed817a873e36836781;hb=b7a2685d39da39f69ee4530dda2ec5977159dc0c;hp=cacf00d30d71189e19360a4b2467ba052f037858;hpb=86c0ca1aafd465a3e0d4a9d6b1af661eba483ae1;p=dsw-obn.git diff --git a/src/test.c b/src/test.c index cacf00d..25497b0 100644 --- a/src/test.c +++ b/src/test.c @@ -4,52 +4,18 @@ #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;" "" "BEGIN" - " msg := helloworld;" - " print := Out.String;" " Out.Open;" - " print(msg);" - " Out.Ln;" - " print(\"It's works!\");" - " Out.Ln;" + " IF 8 IN { 2, 3, 7..10 } THEN" + " Out.String('Yes'); Out.Ln;" + " ELSE" + " Out.String('No'); Out.Ln;" + " END;" "END Test." ;