In AOA, section 3.2.2, there's a way where you I can embed lists of data into the static declaration section. What happens when you embed a list of data? I understand that the data is added in a consecutive order after the variable that the data was assigned to. Like
static:
b: byte:= 0;
byte 1,2,3;
Does this create an array?