Code: Select all
Structure CSTR
StructureUnion
s.s
i.i
EndStructureUnion
EndStructure 
Code: Select all
Structure CSTR
StructureUnion
s.s
i.i
EndStructureUnion
EndStructure Code: Select all
Structure CSTR
StructureUnion
s.String
i.i
EndStructureUnion
EndStructure


with , String I would have to use Peeks() to retrieve the string!
Code: Select all
Structure dog
StructureUnion
name.string
i.i
EndStructureUnion
EndStructure
With puppy.dog
\name\s = "Bowser"
EndWith
Debug puppy\name\s
