CatsAreFluffy

Results 6 issues of CatsAreFluffy

portability

I get an error message when I go to [http://opetopic.net/](http://opetopic.net/).

Fixes #303. The threshold for truncating names is 31, not 32, since you need a byte for a null terminator.

https://github.com/HigherOrderCO/HVM/blob/542ca9884428924c559beeeda2786abaec81defa/src/hvm.rs#L930 underflows for function names longer than 32 bytes, causing an immediate crash if HVM is compiled in debug mode, and inscrutable errors later if it's compiled in release mode.

**Is your feature request related to a problem? Please describe.** Currently, multiplying numbers with more than 24 bits is awkward, since you can only access the lower 24 bits of...