Harbour.l added support for "[String]" inside ARRAY INDEX expressions
Added "Sysntax error :" message for the macro operator (&)
when followed by a string delimiter.
16 lines
153 B
Plaintext
16 lines
153 B
Plaintext
Function Main
|
|
|
|
local a, b , c
|
|
|
|
a := { {,} }
|
|
|
|
a [ 1, 2 ] := [Hello]
|
|
|
|
c := { 1 }
|
|
|
|
b := a [ c [1] ] [ val( [2] ) ]
|
|
|
|
QOut( b )
|
|
|
|
return NIL
|