diff options
Diffstat (limited to 'exercises/macros/macros4.rs')
| -rw-r--r-- | exercises/macros/macros4.rs | 63 |
1 files changed, 1 insertions, 62 deletions
diff --git a/exercises/macros/macros4.rs b/exercises/macros/macros4.rs index d844bb0..2ecba7d 100644 --- a/exercises/macros/macros4.rs +++ b/exercises/macros/macros4.rs @@ -1,5 +1,5 @@ // macros4.rs -// Make me compile! Scroll down for hints :) +// Make me compile! Execute `rustlings hint macros4` for hints :) macro_rules! my_macro { () => { @@ -14,64 +14,3 @@ fn main() { my_macro!(); my_macro!(7777); } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -// You only need to add a single character to make this compile. - - - - - - - - - -// The way macros are written, it wants to see something between each -// "macro arm", so it can separate them. |
