Skip to content

Commit

Permalink
add additional procedural macro links (exercism#1249)
Browse files Browse the repository at this point in the history
I've been implementing a procedural macro this week and found these
links quite useful to learn the skill.

As an aside, I wonder about the order of links in `links.json`.
I'm curious if the specification declares normative ordering. I've been
informally ordering them using beginning with more practically focused
topics and ending on the more theoretical ones. i.e. a bias toward
practice-based learning materials.
  • Loading branch information
efx authored Apr 21, 2021
1 parent 2b1532c commit 5084ffb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions concepts/macros-procedural/links.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
"url": "https://blog.rust-lang.org/2018/12/21/Procedural-Macros-in-Rust-2018.html",
"description": "Wonderfully accessible introductory post by Alex Crichton."
},
{
"url": "https://doc.rust-lang.org/book/ch19-06-macros.html#procedural-macros-for-generating-code-from-attributes",
"description": "Basic introduction to writing procedural macros"
},
{
"url": "https://github.com/dtolnay/proc-macro-workshop",
"description": "Self-directed practice for learning to write basic and advanced procedural macros."
},
{
"url": "https://doc.rust-lang.org/reference/procedural-macros.html",
"description": "Introduction to procedural macros from The Rust Reference."
Expand Down

0 comments on commit 5084ffb

Please sign in to comment.