You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
olivia hugger 17b22f143c
Merge pull request #102 from Delet0r/sub_readme
Created sub READMEs for CLI only version
6 years ago
exercises Created sub READMEs for CLI only version 6 years ago
src Add watch mode, and don't panic on clean failure 6 years ago
.gitignore remove and ignore .DS_Store 6 years ago
Cargo.toml Add watch mode, and don't panic on clean failure 6 years ago
LICENSE Update LICENSE year. 8 years ago
README.md Created sub READMEs for CLI only version 6 years ago
default_out.md add markdown output for default command 6 years ago
ex6.rs Add exercise for creating references in patterns 6 years ago

README.md

rustlings

Greetings and welcome to rustlings. This project contains small exercises to get you used to reading and writing code. This includes reading and responding to compiler messages!

How to get started

To use rustlings you have to have rust installed on your machine. If you already have it, you can clone the repo to your local environment with:

git clone https://github.com/rustlings/rustlings.git

To run rustlings you can either use cargo run <subcommand> or you can install rustlings on your machine by running cargo install --path <path to the rustlings repo> (NOTE: for rustling to function you have to be in the directory of the repo).

Doing exercises

The exercises are sorted by topic and can be found in the subdirectory rustlings/exercises/<topic>. For every topic there is an additional README file with some resources to get you started on the topic. We really recommend, that you have a look at them before you start.

Your task is simple every exercise contains an error you have to solve, in order to make it compile.

Running rustlings with the subcommand verify will compile every exercise in the recommended order. It will stop at the first exercise that didn't compile and show you the error to be solved.

If you want to run a single exercise, you can use the subcommand run <path to the exercise>.

When you struggle to solve the error, there is usually a tip at the bottom of each exercise.