GIT
/
REPO
/
FRED-BOY
Projects
/
dsw-obn.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Подпрален FOR для соответствия стандарту
[dsw-obn.git]
/
Test.obn
diff --git
a/Test.obn
b/Test.obn
index 8249fb77223116fd24082f63a7dba78821d98fe1..f0552a93a06abbaed7841faf482aae3f99251f7f 100644
(file)
--- a/
Test.obn
+++ b/
Test.obn
@@
-2,7
+2,14
@@
MODULE Test;
IMPORT Out;
+VAR
+ i : INTEGER;
+
BEGIN
Out.Open;
- Out.String("Hello World!"); Out.Ln;
+ i := 48;
+ FOR i := 32 TO i DO
+ Out.Int(i, 0); Out.Char(' ');
+ END;
+ Out.Ln;
END Test.
DEADSOFTWARE 2012-2025