Getting back on the coding horse - does anyone have any idea why IDL gives syntax errors on compile here? [message #94756] |
Thu, 28 September 2017 14:43  |
Helder Marchetto
Messages: 520 Registered: November 2011
|
Senior Member |
|
|
Hi,
I think that you should update your code. IDL has abandoned round parenthesis for arrays ages ago. Try dropping those round ones for square ones:
myArray[pos] = ...
That should bring you a step further. If not, let us know...
Cheers, Helder
PS: round parenthesis are used for functions, so compile and programmers tend to get confused. That's why things should be kept like () for functions and [] for array indexing. Check the IDL help for compiler options.
|
|
|
|