From 2f89173cd50e0ffcf575e1a46b225687d55ca685 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Wed, 11 Jan 2017 14:06:42 -0500 Subject: [PATCH] Move macros to an appendix --- src/SUMMARY.md | 4 +--- src/appendix-05-macros.md | 5 +++++ 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 src/appendix-05-macros.md diff --git a/src/SUMMARY.md b/src/SUMMARY.md index a2f4d6d..48a9b1c 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -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) diff --git a/src/appendix-05-macros.md b/src/appendix-05-macros.md new file mode 100644 index 0000000..cef030b --- /dev/null +++ b/src/appendix-05-macros.md @@ -0,0 +1,5 @@ +# Macros + +## Basics of writing your own macros + +## Macros are changing, go see X for more info