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
Right now it's a parse error to write something like:
echo hello world &&echo bye
The first & is interpreted as "run in background job" (obviously the wrong interpretation) and the rest of the line causes a parse error (so additional lines don't get transpiled). Errors like this should be indicated more clearly (ideally, they would be inline as code-mirror widgets). I have a similar solution at rainbows-lang.
The text was updated successfully, but these errors were encountered:
Right now it's a parse error to write something like:
The first
&
is interpreted as "run in background job" (obviously the wrong interpretation) and the rest of the line causes a parse error (so additional lines don't get transpiled). Errors like this should be indicated more clearly (ideally, they would be inline as code-mirror widgets). I have a similar solution at rainbows-lang.The text was updated successfully, but these errors were encountered: