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