BorysLevytskyi / BitwiseCmd

Bitwise Calculator Online
http://bitwisecmd.com
GNU Affero General Public License v3.0
310 stars 14 forks source link

Spaces between digits ignored #3

Closed jclehner closed 7 years ago

jclehner commented 8 years ago

When entering an expression like 2048 1 << 1 I'd expect it to be split into two tokens: 2048 and 1 << 1, with the result being the same as if I had entered 2048 2. Instead, the result is interpreted as 20481 << 1.

BorysLevytskyi commented 7 years ago

BitwiseCmd supports either expression or list of numbers. Can't be both at the same time.