C printf for Haxe.
See cplusplus.com for a complete reference.
%b
converts a given integer into binary format (same flags as for integers):
Printf.format("%b", [7]); //outputs "111"
Printf.format("%#b", [0x100]); //outputs "0b100000000"
- various fixes and optimizations.
- fixed: fix cpp compile error
- fixed: double minus for %f
- Initial release.