add some links to external resources
authorRalf Jung <post@ralfj.de>
Mon, 8 Jun 2015 12:29:33 +0000 (14:29 +0200)
committerRalf Jung <post@ralfj.de>
Mon, 8 Jun 2015 12:29:33 +0000 (14:29 +0200)
README.md [new file with mode: 0644]
src/main.rs
src/part00.rs

diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..406acad
--- /dev/null
+++ b/README.md
@@ -0,0 +1,7 @@
+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).
index 4352a505b98ab846be3f3f634eb059c0132616b9..a0dc866ee3103edd3e19577707b8e9bd5318b2d2 100644 (file)
@@ -27,3 +27,12 @@ mod part01;
 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/)
index b887eb4f25d7f4e7ac1dcebc113f4297c397d662..962e801238b4f26574d91a6c8578e6b81982bb20 100644 (file)
@@ -18,4 +18,4 @@ pub fn read_vec() -> Vec<i32> {
 
 pub fn part_main() {
     
-}
\ No newline at end of file
+}