Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 2.2 KB

README.md

File metadata and controls

41 lines (31 loc) · 2.2 KB

Rust Workshop

This is a Rust workshop specifically focused on those with no experience in Rust, but with at least some experience in systems programming either through C or C++.

Getting Started

Installing Rust should hopefully be relatively straight forward, but if you run into any issues, please do let me know so I can help troubleshoot.

To install the toolchain, first go to rustup.rs, and follow the instructions. This should install the compiler, Cargo (Rust's build tool), and other things like documentation.

You can check that this all worked by:

  • opening your terminal (PowerShell, cmd.exe, bash, etc. should all work)
  • entering cargo new hello-world
  • changing into the newly created hello-world directory
  • running cargo run
  • if you see "Hello, world!" printed to your screen, then everything should be good!

I recommend VS Code as the programming environment for Rust though there are relatively sizable portions of the community that use vim, emacs, Sublime, and IntelliJ. Using Rust in Visual Studio is possible, but it might be a bit buggy.

If you use VS Code, make sure to install the Rust extension and open your hello-world project in VS Code. You should then be prompted to install the Rust language server (RLS). Once the RLS is installed, your environment should be ready.

Once you have a Rust environment set up, go to part 1 folder to get started.

Additional Resources