aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises
diff options
context:
space:
mode:
Diffstat (limited to 'exercises')
-rw-r--r--exercises/059_integers.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/exercises/059_integers.zig b/exercises/059_integers.zig
index 4410079..39e077c 100644
--- a/exercises/059_integers.zig
+++ b/exercises/059_integers.zig
@@ -6,7 +6,8 @@
// const a2: u8 = 0x41; // hexadecimal
// const a3: u8 = 0o101; // octal
// const a4: u8 = 0b1000001; // binary
-// const a5: u8 = 'A'; // UTF-8 code point literal
+// const a5: u8 = 'A'; // ASCII code point literal
+// const a6: u16 = 'Ȁ'; // Unicode code points can take up to 21 bits
//
// You can also place underscores in numbers to aid readability:
//