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 currently ends escape sequences at the first > it sees, but this prevents greater-than and bitshifts. The standard convention for ignoring is to use two of them, so comparisons could work as a >> b or bitshifts could be a >>>> b.
The text was updated successfully, but these errors were encountered:
The parser currently ends escape sequences at the first
>
it sees, but this prevents greater-than and bitshifts. The standard convention for ignoring is to use two of them, so comparisons could work asa >> b
or bitshifts could bea >>>> b
.The text was updated successfully, but these errors were encountered: