Open pgagnidze opened 1 year ago
Currently, we can initialize an array with new [4] 0; where 4 is the size, and 0 is the default value.
new [4] 0;
Allow initialization of the array with specific values like local a = [1, 2, 3, 4]
local a = [1, 2, 3, 4]
Currently, we can initialize an array with
new [4] 0;
where 4 is the size, and 0 is the default value.Allow initialization of the array with specific values like
local a = [1, 2, 3, 4]