macro_rules! input {
    ($i:expr) => { ... };
    ($i:expr,) => { ... };
}
Expand description

Helper macro that returns the input without consuming it.

Useful when you need to get the input and use it to retrieve positional information like offset or line and column.