Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 :)
- Host: GitHub
- URL: https://github.com/chaudinh/rust-beginner
- Owner: ChauDinh
- Created: 2019-06-20T00:49:07.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-20T00:51:52.000Z (over 5 years ago)
- Last Synced: 2024-11-18T13:38:59.450Z (3 months ago)
- Topics: cargo, rust, rust-lang, rustc
- Language: Rust
- Size: 98.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```