A repository to store my rusty experiments. 🦀
- Install Rust.
- Configure VSCode for Rust.
- Check if installation is complete with the
rustc --versioncommand in a new terminal.
To keep Rust up to date, just use the
rustup updatecommand.
hello_world
1. Typecargo new hello_world into the terminal to create a new project called "hello_world". 2. Navigate to the project directory with
cd hello_world. 3. Build the project with
cargo build. This will create an executable "hello_world.exe" in the target/debug folder. 4. Run the project with
cargo run.
Cool crates to check out: