diff options
| author | Corey Farwell <coreyf@rwell.org> | 2017-03-12 01:05:55 -0500 |
|---|---|---|
| committer | Corey Farwell <coreyf@rwell.org> | 2017-03-13 21:38:46 -0400 |
| commit | e58e3d0bc0495a5103527d4c0317f089684ac0f1 (patch) | |
| tree | 4994674f93f4ab4c9e337a8cde35b99100fb65ba | |
| parent | 137c1e8121b0fcaa3a1a1c7e2294e1152a932f46 (diff) | |
| download | rust-e58e3d0bc0495a5103527d4c0317f089684ac0f1.tar.gz rust-e58e3d0bc0495a5103527d4c0317f089684ac0f1.zip | |
Rust unstable book: basic desc and example for `non_ascii_idents`.
| -rw-r--r-- | src/doc/unstable-book/src/non-ascii-idents.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/doc/unstable-book/src/non-ascii-idents.md b/src/doc/unstable-book/src/non-ascii-idents.md index f426022ab3a..d5600c58fd9 100644 --- a/src/doc/unstable-book/src/non-ascii-idents.md +++ b/src/doc/unstable-book/src/non-ascii-idents.md @@ -6,5 +6,13 @@ The tracking issue for this feature is: [#28979] ------------------------ +The `non_ascii_idents` feature adds support for non-ASCII identifiers. +## Examples +```rust +#![feature(non_ascii_idents)] + +const ε: f64 = 0.00001f64; +const Π: f64 = 3.14f64; +``` \ No newline at end of file |
