Neue Architektur

This commit is contained in:
2025-10-12 19:06:28 +02:00
commit bdee19419d
120 changed files with 2706 additions and 0 deletions

View File

@ -0,0 +1,16 @@
PROGRAM Demo
VAR
a UINT := 0;
b UINT := 0;
i UINT := 0;
END_VAR
WHILE a < 5 DO
a := a + 1;
END_WHILE;
FOR i := 1 TO 10 DO
b := b + i;
END_FOR;
END_PROGRAM