Skip to content

Instantly share code, notes, and snippets.

@Antti
Created August 6, 2015 10:18
Show Gist options
  • Save Antti/50d3e2308c363fb14e1e to your computer and use it in GitHub Desktop.
Save Antti/50d3e2308c363fb14e1e to your computer and use it in GitHub Desktop.
rust p macro
macro_rules! p {
($($e:expr),+) => ({
$(
println!("{} = {:?}", stringify!($e), $e);
)+
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment