rustlings/exercises/macros/macros1.rs

17 lines
239 B
Rust
Raw Permalink Normal View History

2018-02-22 06:09:53 +00:00
// macros1.rs
//
// Execute `rustlings hint macros1` or use the `hint` watch subcommand for a
// hint.
2017-03-17 14:30:29 +00:00
// I AM NOT DONE
2017-03-17 14:30:29 +00:00
macro_rules! my_macro {
() => {
println!("Check out my macro!");
};
}
fn main() {
my_macro();
}