You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like array indexing has lower precedence than it should be, I expect both of the following two expressions to evaluate to true.
The spec does not say anything about it, I expect that it should be the highest (higher than function calls), so we can pass indexed array values to functions.
X is "abc"
Shatter X
If X at 0 is "a"
Say "True"
Else
Say "False"
If "a" is X at 0
Say "True"
Else
Say "False"
It seems like array indexing has lower precedence than it should be, I expect both of the following two expressions to evaluate to
true
.The spec does not say anything about it, I expect that it should be the highest (higher than function calls), so we can pass indexed array values to functions.
Satriani Returns:
(Thanks to @hugobuddel)
The text was updated successfully, but these errors were encountered: