Fixed unicode literal
This commit is contained in:
parent
9e9cf40453
commit
d0519d18fa
1 changed files with 6 additions and 6 deletions
|
@ -7,7 +7,7 @@
|
|||
// const a3: u8 = 0o101; // octal
|
||||
// const a4: u8 = 0b1000001; // binary
|
||||
// const a5: u8 = 'A'; // ASCII code point literal
|
||||
// const a6: u16 = 'Ȁ'; // Unicode code points can take up to 21 bits
|
||||
// const a6: u16 = '\u{0041}'; // Unicode code points can take up to 21 bits
|
||||
//
|
||||
// You can also place underscores in numbers to aid readability:
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue