From 8a5f54e2e22b208cd1886c13154b4325cd076746 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Tue, 2 Aug 2016 22:17:05 -0400 Subject: [PATCH] Send the appendix to nostarch too. --- nostarch/appendix.md | 63 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 nostarch/appendix.md diff --git a/nostarch/appendix.md b/nostarch/appendix.md new file mode 100644 index 0000000..6f061d7 --- /dev/null +++ b/nostarch/appendix.md @@ -0,0 +1,63 @@ +# Appendix + +The following sections contain reference material you may find useful in your +Rust journey. + +## Keywords + +The following keywords are reserved by the Rust language and may not be used as +names of functions, variables, macros, modules, crates, constants, static +values, attributes, struct fields, or arguments. + +* `abstract` +* `alignof` +* `as` +* `become` +* `box` +* `break` +* `const` +* `continue` +* `crate` +* `do` +* `else` +* `enum` +* `extern` +* `false` +* `final` +* `fn` +* `for` +* `if` +* `impl` +* `in` +* `let` +* `loop` +* `macro` +* `match` +* `mod` +* `move` +* `mut` +* `offsetof` +* `override` +* `priv` +* `proc` +* `pub` +* `pure` +* `ref` +* `return` +* `Self` +* `self` +* `sizeof` +* `static` +* `struct` +* `super` +* `trait` +* `true` +* `type` +* `typeof` +* `unsafe` +* `unsized` +* `use` +* `virtual` +* `where` +* `while` +* `yield`