Commit inicial: fuentes MBS ERP (Genero 6) + .gitignore + docs/SETUP_PC_MBS.md

This commit is contained in:
2026-08-18 20:59:52 -04:00
commit 454973e269
5978 changed files with 2664094 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
IMPORT util
MAIN
DEFINE rec RECORD
field1 INTEGER,
field2 CHAR(1),
subrec1 RECORD
field11 INTEGER,
fiedl12 VARCHAR(30)
END RECORD,
subarr1 DYNAMIC ARRAY OF INTEGER
END RECORD
INITIALIZE rec.* TO NULL
LET rec.field1 = 999
LET rec.field2 ='N'
LET rec.subarr1[3] = 888
DISPLAY "stringify() : ", util.JSON.stringify(rec)
END MAIN