Hello!
Can anyone explain what's going on here:
; Initializing an array
Local $a = [ 0 ]
; Lately in code I want to assign new array to $a variable
$a = [ 1 ]
and got this error at compile time
==> Error in expression.:
$a = [ 1 ]
$a = ^ ERROR
What is it and why?
And I've mentioned that I can't pass "manual" array to function as parameter:
a( [ 0 ] )
Func a( $a )
_ArrayDisplay( $a )
EndFunc
still the same error
==> Error in expression.:
a( [ 0 ] )
a( ^ ERROR