wduquette / molt

Embeddable TCL Interpreter for Rust applications
BSD 3-Clause "New" or "Revised" License
103 stars 12 forks source link

Support hexadecimal integer input #16

Closed wduquette closed 5 years ago

wduquette commented 5 years ago

Standard TCL supports integer input as decimal, octal (with leading 0), and hex (with leading 0x). Molt currently supports only decimal. Octal input has been a fruitful source of unexpected errors over the years, so Molt isn't going to support it; but it should support hex.

wduquette commented 5 years ago

Fixed by commit d446e0f.