浏览代码

Improve chapter 1 with more linkage to Rust resources, and a full line-by-line explanation of the Hello Rust program. Also remove redundant extern crate, since Rust 2018 has obviated it.

Herbert Wolverson 5 年之前
父节点
当前提交
339d8ca67b
共有 3 个文件被更改,包括 71 次插入4 次删除
  1. 1 0
      .vscode/spellright.dict
  2. 70 3
      book/src/chapter_1.md
  3. 0 1
      chapter-01-hellorust/src/main.rs

+ 1 - 0
.vscode/spellright.dict

@@ -22,3 +22,4 @@ bitset
 Bitsets
 Gedminas
 Kyzrati
+gotchas

文件差异内容过多而无法显示
+ 70 - 3
book/src/chapter_1.md


+ 0 - 1
chapter-01-hellorust/src/main.rs

@@ -1,4 +1,3 @@
-extern crate rltk;
 use rltk::{Rltk, GameState, Console};
 
 struct State {}