rustlings

solving rustlings ft. dracuxan
git clone [email protected]:dracuxan/rustlings.git
Log | Files | Refs

README.md (700B)


      1 # Macros
      2 
      3 Rust's macro system is very powerful, but also kind of difficult to wrap your
      4 head around. We're not going to teach you how to write your own fully-featured
      5 macros. Instead, we'll show you how to use and create them.
      6 
      7 If you'd like to learn more about writing your own macros, the
      8 [macrokata](https://github.com/tfpk/macrokata) project has a similar style
      9 of exercises to Rustlings, but is all about learning to write Macros.
     10 
     11 ## Further information
     12 
     13 - [The Rust Book - Macros](https://doc.rust-lang.org/book/ch20-05-macros.html)
     14 - [The Little Book of Rust Macros](https://veykril.github.io/tlborm/)
     15 - [Rust by Example - macro_rules!](https://doc.rust-lang.org/rust-by-example/macros.html)