2021-04-23 13:54:31 -04:00
|
|
|
# Macros
|
2019-01-23 15:02:06 -05:00
|
|
|
|
|
|
|
Rust's macro system is very powerful, but also kind of difficult to wrap your
|
|
|
|
head around. We're not going to teach you how to write your own fully-featured
|
2020-04-29 22:11:54 -04:00
|
|
|
macros. Instead, we'll show you how to use and create them.
|
2019-01-23 15:02:06 -05:00
|
|
|
|
2023-03-31 05:20:11 -04:00
|
|
|
If you'd like to learn more about writing your own macros, the
|
2022-10-23 22:57:44 -04:00
|
|
|
[macrokata](https://github.com/tfpk/macrokata) project has a similar style
|
|
|
|
of exercises to Rustlings, but is all about learning to write Macros.
|
|
|
|
|
2021-04-23 13:54:31 -04:00
|
|
|
## Further information
|
2019-01-23 15:02:06 -05:00
|
|
|
|
2019-06-06 23:17:22 -04:00
|
|
|
- [Macros](https://doc.rust-lang.org/book/ch19-06-macros.html)
|
2022-08-09 14:27:27 -04:00
|
|
|
- [The Little Book of Rust Macros](https://veykril.github.io/tlborm/)
|