Move macros to an appendix

This commit is contained in:
Carol (Nichols || Goulding) 2017-01-11 14:06:42 -05:00
parent 7328b60b62
commit 2f89173cd5
2 changed files with 6 additions and 3 deletions

View File

@ -88,11 +88,9 @@
- [Advanced Type System Features](ch20-00-advanced-types.md) (perhaps called "Advanced Traits"?)
- [Macros]() (think about making little book of rust macros the authority on this topic)
- [Writing Your Own Macros]()
- [Appendix](appendix-00.md)
- [Keywords](appendix-01-keywords.md)
- [Operators](appendix-02-operators.md)
- [Derivable Traits](appendix-03-derivable-traits.md)
- [Nightly Rust](appendix-04-nightly-rust.md)
- [Macros](appendix-05-macros.md)

View File

@ -0,0 +1,5 @@
# Macros
## Basics of writing your own macros
## Macros are changing, go see X for more info