Rust for the Novice Programmer/Setup

Setup edit

We will need to do some setup when just starting out. Before you can run Rust code, you will need to setup a workspace. This workspace is often called a "Development Environment".

  • You need to understand how to open a terminal and the basics of using one.
  • You will also need some text editor for editing code files.

The easiest way to get started with Rust is to follow the instructions at the official Rust language website..

Next, we can move on to actually doing stuff.