File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
src/doc/unstable-book/src Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 1
1
# The Unstable Book
2
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.
You can’t perform that action at this time.
0 commit comments