dev icon indicating copy to clipboard operation
dev copied to clipboard

array name could be a constant

Open x87 opened this issue 11 months ago • 2 comments

currently this code does not compile:

const arr = 1@
arr(0@,1i) = 0

this code, however, does:

int arr[1]
arr[0@] = 0

https://github.com/sannybuilder/dev/wiki/Grammar#arrays

x87 avatar Sep 09 '23 16:09 x87