Rust 程序设计语言 中文版——Chinese translation of The Rust Programming Language (Book)
Go to file
Steve Klabnik 7f0b63387f Clean out section three
Let's see if we can't make this all more consistent.
2015-12-16 15:13:26 -05:00
src Clean out section three 2015-12-16 15:13:26 -05:00
.gitignore Hello, world. 2015-12-11 17:50:02 -05:00
.travis.yml deploy to GH pages 2015-12-14 14:50:56 -05:00
deploy.sh deploy to the book repo, not rust by example. 2015-12-14 14:55:40 -05:00
Makefile Add a Makefile 2015-12-14 12:12:04 -05:00
README.md Link to the rendered HTML from the README 2015-12-14 15:00:58 -05:00

The Rust Programming Language

This is the next iteration of “The Rust Programming Language”, which is currently located in the main Rust repository. If you want to read the book, you should check it out there or on the web.

If you would like to see this verison rendered, its on GitHub pages.

Requirements

Building the book requires mdBook. To get it:

$ cargo install mdbook

Building

To build the book, type:

$ make

The output will be in the book subdirectory. To check it out, open it in your web browser:

$ firefox book/index.html

To run the tests:

$ make test

To do both:

$ make all

Contributing

Im not going to be accepting major changes at first, but pull requests to fix typos and such are welcome. Please file any issues for discussion of larger changes.

This repository is under the same license as Rust itself, MIT/Apache2.