--- /dev/null
+Rust-101
+========
+
+This is Rust-101, a tutorial for the [Rust language](http://www.rust-lang.org/).
+You can either read through the sources in `src/`, or generate the HTML
+in `docs/` using `./pycco-rs src/*.rs`, or go directly to
+[the rendered output](https://ralfjung.github.io/rust-101/main.html).
fn main() {
part00::part_main();
}
+
+// Additional material
+// -------------------
+//
+// There's tons of useful Rust stuff out there, so let me just put links to some
+// of the most interesting places here:
+// * [The Rust Book](https://doc.rust-lang.org/stable/book/)
+// * [Rust by Example](http://rustbyexample.com/)
+// * The [Rust Subreddit](https://www.reddit.com/r/rust/)
pub fn part_main() {
-}
\ No newline at end of file
+}