Examples

  Numbers STRUCT
    One   DB   0
    Two   DW   0
    Three DB   0
    Four  DD   0
  Numbers ENDS

First  Numbers <>            ; empty initializer list
Second Numbers <1, 2, 3, 4>  ; override all defaults
Third  Numbers <1>           ; override first entry only
Fourth Numbers <1,,,4>       ; override first and last entries


[Back: Description]
[Next: Expression Evaluation]