Set the fields of a structure
set_struct_fields (Struct_Type s, ...)
The set_struct_fields function may be used to set zero or more fields of a structure. The fields are set in the order in which they were created when the structure was defined.
variable s = struct { name, age, height }; set_struct_fields (s, "Bill", 13, 64);