Contact Details
No response
Compiler version
v1.18.4
What happened?
sub CheckArray(array() as ubyte)
for i = lbound(array, 1) to ubound(array, 1)
print i; " "; array(i)
next i
end sub
dim array(1 to 2) as ubyte => { 10, 20 }
CheckArray array
The result is:
The expected result is:
This worked correctly in version v1.18.0-beta10.
Error and Warning messages
Code of Conduct