Is a << b + 3 * c semantically equivalent to a << (b + 3) * c? #
a << b + 3 * c
a << (b + 3) * c
Nope.
Made by @mathias using Zeon.js for @140bytes — fork this on GitHub!