We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f16c48e commit aba4bf6Copy full SHA for aba4bf6
src/doc/unstable-book/src/the-unstable-book.md
@@ -1,2 +1,22 @@
1
# The Unstable Book
2
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