macro_rules! itos { ($n: expr) => { ... }; }
Convert an integer type into it’s string represention as &u8
For example: 123 returns &[49, 50, 51] -100 returns &[45, 49, 48, 48]