Skip to content

Commit e58e3d0

Browse files
committed
Rust unstable book: basic desc and example for non_ascii_idents.
1 parent 137c1e8 commit e58e3d0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/doc/unstable-book/src/non-ascii-idents.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,13 @@ The tracking issue for this feature is: [#28979]
66

77
------------------------
88

9+
The `non_ascii_idents` feature adds support for non-ASCII identifiers.
910

11+
## Examples
1012

13+
```rust
14+
#![feature(non_ascii_idents)]
15+
16+
const ε: f64 = 0.00001f64;
17+
const Π: f64 = 3.14f64;
18+
```

0 commit comments

Comments
 (0)