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.
I had a piece of code which I copied and pasted today.
the line was match = line.split /\s+/ .pop! the error was unexpected assign. after finally changing all variable names I found out that match is a keyword. there should be some mention of not being able to assign to the match keyword, IMO -- totally low priority.
The text was updated successfully, but these errors were encountered:
I had a piece of code which I copied and pasted today.
the line was
match = line.split /\s+/ .pop!
the error was unexpected assign. after finally changing all variable names I found out thatmatch
is a keyword. there should be some mention of not being able to assign to the match keyword, IMO -- totally low priority.The text was updated successfully, but these errors were encountered: