aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises
diff options
context:
space:
mode:
Diffstat (limited to 'exercises')
-rw-r--r--exercises/059_integers.zig12
1 files changed, 6 insertions, 6 deletions
diff --git a/exercises/059_integers.zig b/exercises/059_integers.zig
index 39e077c..ae65790 100644
--- a/exercises/059_integers.zig
+++ b/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:
//