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
The parser splits the arguments by strings.split(s, ","), which does not allow the character , to be used but to separate arguments. This causes many problems, since a string like hello, world would error the program. Also, you can't nest functions with more than one argument, since it would also break.
The text was updated successfully, but these errors were encountered:
The parser splits the arguments by
strings.split(s, ",")
, which does not allow the character,
to be used but to separate arguments. This causes many problems, since a string likehello, world
would error the program. Also, you can't nest functions with more than one argument, since it would also break.The text was updated successfully, but these errors were encountered: