Simple syntax extension that converts hex strings into byte strings.
```rust
fn main() { // prints "[0, 255]" println!("{:?}", hex!("00ff")) } ```