Error Messages/43543

< Error Messages
Revision as of 20:50, 25 October 2024 by Lchrisman (talk | contribs) (Created page with "== Error Message == :Expecting index identifier == Description == A syntax error occur in which the identifier of an was expected, but something else appeared. This error us...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Error Message

Expecting index identifier

Description

A syntax error occur in which the identifier of an was expected, but something else appeared.

This error usually means that you have used a Subscript-Slice Operator without specifying the index, such as X[5] instead of X[I=5] or X[@I=5]. To fix this the error, modify the expression to include the index.

In the event you want to slice over the Implicit index of an array (including slicing an element from a list), you don't have a way to name the index. In that case, X[@=5] is accepted. But this doesn't work when the dimension corresponds to a real index.

See Also

Comments


You are not allowed to post comments.