variadics_please 1.1.0

Implement things as if rust had variadics
Documentation
1
2
3
4
5
6
7
8
# Debugging

## Macro Debugging

- Print the final output of a macro using `cargo rustc --profile=check -- -Zunstable-options --pretty=expanded`
  - Alternatively you could install and use [cargo expand]https://github.com/dtolnay/cargo-expand which adds syntax highlighting to the terminal output.
    - Additionally get pager by piping to `less` ( on Unix systems ): `cargo expand --color always | less -R`
- Print output during macro compilation using `eprintln!("hi");`