Function decimal
Source pub fn decimal<Value: Display>(value: Value) -> String
14fn buy_item(remote: &mut TcpStream, item_index: u8) {
15 remote.receive_until(b"> ", false).unwrap();
16 remote.send_line(b"buy").unwrap();
17 remote.receive_until(b": ", false).unwrap();
18 remote.send_line(decimal(item_index).as_bytes()).unwrap();
19}