Skip to content

Instantly share code, notes, and snippets.

@heypoom
Created August 18, 2018 12:20
Show Gist options
  • Save heypoom/5bbb62a9130ccf3cfffb55208f23f56d to your computer and use it in GitHub Desktop.
Save heypoom/5bbb62a9130ccf3cfffb55208f23f56d to your computer and use it in GitHub Desktop.
macro_rules! greet {
($name:expr) => {
println!("Greetings, {}!", $name);
};
}
fn main() {
greet!("Phoom")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment