Skip to content

Commit aba4bf6

Browse files
committed
write intro
1 parent f16c48e commit aba4bf6

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,22 @@
11
# The Unstable Book
22

3+
Welcome to the Unstable Book! This book consists of a number of chapters,
4+
each one organized by a "feature flag." That is, when using an unstable
5+
feature of Rust, you must use a flag, like this:
6+
7+
```rust
8+
#![feature(box_syntax)]
9+
10+
fn main() {
11+
let five = box 5;
12+
}
13+
```
14+
15+
The `box_syntax` feature [has a chapter][box] describing how to use it.
16+
17+
[box]: box-syntax.html
18+
19+
Because this documentation relates to unstable features, we make no guarantees
20+
that what is contained here is accurate or up to date. It's developed on a
21+
best-effort basis. Each page will have a link to its tracking issue with the
22+
latest developments; you might want to check those as well.

0 commit comments

Comments
 (0)