Browse Source

Fixed unicode literal

Chris Boesch 1 year ago
parent
commit
d0519d18fa
1 changed files with 6 additions and 6 deletions
  1. 6 6
      exercises/059_integers.zig

+ 6 - 6
exercises/059_integers.zig

@@ -2,12 +2,12 @@
 // Zig lets you express integer literals in several convenient
 // formats. These are all the same value:
 //
-//     const a1: u8 = 65;        // decimal
-//     const a2: u8 = 0x41;      // hexadecimal
-//     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 a1: u8 = 65;          // decimal
+//     const a2: u8 = 0x41;        // hexadecimal
+//     const a3: u8 = 0o101;       // octal
+//     const a4: u8 = 0b1000001;   // binary
+//     const a5: u8 = 'A';         // ASCII code point literal
+//     const a6: u16 = '\u{0041}'; // Unicode code points can take up to 21 bits
 //
 // You can also place underscores in numbers to aid readability:
 //