Fixed
- Fixed what happens when using
||
and&&
if you had an expression after the operators. If you ran"A" == "A" || "A" == "B"
, it would interpret it as("A" == "A" || "A") == "B"
, so it would return false instead of true. - Fixed multiline comments not working correctly when used in certain places
- Fixed multiline comments breaking the repl