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
Some of the operators on the official documentation are not currently supported by the parser. Some examples include floor division (//), mod, bit operators (like bit-or).
The text was updated successfully, but these errors were encountered:
As part of #21, this PR
adds binary operators that are either symbols or single barewords. I
couldn't figure out an easy way to handle operators that span multiple
tokens, such as `starts-with`. I also didn't add `not`.
I threw in some code for `++=` but no tests. I assume we'll get to that
once we implement typechecking for assignment oeprators, which this PR
doesn't do.
https://www.nushell.sh/book/operators.html
Some of the operators on the official documentation are not currently supported by the parser. Some examples include floor division (
//
),mod
, bit operators (likebit-or
).The text was updated successfully, but these errors were encountered: