troyhen / neo

Neo Programming Language
https://groups.google.com/forum/#!forum/neo-lang
12 stars 0 forks source link

Add binary literal integers and longs #23

Closed troyhen closed 12 years ago

troyhen commented 12 years ago

These need to work: 0b1 == 1 -0b11 = -3 0b1010 == 10 0b111111 == 255 0b111111l == 255l

troyhen commented 12 years ago

Done