Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 895 Bytes

SETUP.md

File metadata and controls

35 lines (23 loc) · 895 Bytes

Workshop 13 - SETUP - Introduction to Rust

1. Installation

Please make sure you have the following programs installed:

  • Rust: A language that gives everyone the power to build reliable and efficient software.

Install Rust:

  • Under all systems:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

💡 We recommend you to download the vscode extension Rust for Rust or JetBrains extension IntelliJ Rust.

2. Project

Create a working folder.

Init your project:

cargo init

Run your project:

cargo run

3. Start workshop

💡 We recommend you to follow the Tour of Rust for this workshop.

Go back to the exercise