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

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.

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)