├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | **/target/ 2 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hands on Rust 2 | 3 | ## Installing Rust 4 | 5 | 1. Linux or macOS 6 | - Run the following command in a terminal 7 | 8 | `curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh` 9 | 2. Windows 10 | - See https://www.rust-lang.org/tools/install 11 | - You'll also need the C++ build tools for VS 2013 or later 12 | 13 | ### Inspiration of this Tutorial 14 | - https://github.com/andyolsen --------------------------------------------------------------------------------