This website requires JavaScript.
Explore
Help
Sign In
tristan
/
rustlings
Watch
1
Star
0
Fork
You've already forked rustlings
0
mirror of
https://github.com/rust-lang/rustlings.git
synced
2024-12-25 23:10:30 +00:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
Actions
26cf4989a2
rustlings
/
solutions
/
21_macros
/
macros1.rs
11 lines
132 B
Rust
Raw
Normal View
History
Unescape
Escape
macros1 solution
2024-07-01 10:28:38 +01:00
macro_rules
!
my_macro
{
(
)
=
>
{
println!
(
"
Check out my macro!
"
)
;
}
;
}
fn
main
(
)
{
my_macro!
(
)
;
// ^
}
Reference in a new issue
Copy permalink