https://github.com/wyze/rust-book-examples
Working through the chapters of the book and writing the examples.
https://github.com/wyze/rust-book-examples
Last synced: 3 months ago
JSON representation
Working through the chapters of the book and writing the examples.
- Host: GitHub
- URL: https://github.com/wyze/rust-book-examples
- Owner: wyze
- License: mit
- Created: 2019-08-17T16:52:27.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-19T12:45:47.000Z (over 5 years ago)
- Last Synced: 2024-06-14T21:09:10.092Z (12 months ago)
- Language: Rust
- Homepage:
- Size: 83 KB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# Rust Programming Language Book Examples
> Working through the chapters of the book and writing the examples.
## Setup
```sh
$ git clone https://github.com/wyze/rust-book-examples.git
$ cd rust-book-examples
```## Usage
### Run most chapters
```sh
$ cargo run
```### Run guessing game
```sh
$ cargo run game
```### Run mean, median, and mode program
```sh
$ cargo run mean-median-mode
```### Run pig latin program
```sh
$ cargo run pig-latin
```### Run company directory program
```sh
$ cargo run company-directory
```### Run web server
```sh
$ cargo run web-server
```## License
MIT © [Neil Kistner](https://neilkistner.com)