summaryrefslogtreecommitdiff
path: root/exercises/macros/macros1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/macros/macros1.rs')
-rw-r--r--exercises/macros/macros1.rs54
1 files changed, 1 insertions, 53 deletions
diff --git a/exercises/macros/macros1.rs b/exercises/macros/macros1.rs
index a7c78a5..0bc2a69 100644
--- a/exercises/macros/macros1.rs
+++ b/exercises/macros/macros1.rs
@@ -1,5 +1,5 @@
// macros1.rs
-// Make me compile! Scroll down for hints :)
+// Make me compile! Execute `rustlings hint macros1` for hints :)
macro_rules! my_macro {
() => {
@@ -10,55 +10,3 @@ macro_rules! my_macro {
fn main() {
my_macro();
}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// When you call a macro, you need to add something special compared to a
-// regular function call. If you're stuck, take a look at what's inside
-// `my_macro`.