This commit is contained in:
2025-10-11 23:42:21 +02:00
commit 0e549b6e0a
32 changed files with 584 additions and 0 deletions

9
input.st Normal file
View File

@ -0,0 +1,9 @@
PROGRAM Demo
VAR
a int16 := 5;
b byte := a + 3;
c int32 := b * 2;
END_VAR
a := a + c;
END_PROGRAM