Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chaudinh/rust-beginner

A beginner guide to Rust :)
https://github.com/chaudinh/rust-beginner

cargo rust rust-lang rustc

Last synced: about 1 month ago
JSON representation

A beginner guide to Rust :)

Awesome Lists containing this project

README

        

# Getting started

These practices lean on Test-Driven Development (TDD), but they're not an exact matched concepts.

The following steps assume you are in the same directory as the exercises.

We must have rust installed initially.

### Installation

Following the [Installation of The Rust book](https://doc.rust-lang.org/book/ch01-01-installation.html).

Reference material(s):

- The [Rust language section](https://exercism.io/languages/rust)
- Updating...

### Practices

Run the test suite. It can be run with `cargo`, which is installed with rust automatically.

```
$ cargo test
```