aboutsummaryrefslogtreecommitdiff
path: root/exercises/036_enums2.zig
diff options
context:
space:
mode:
authorMartin Ashby <martin@ashbysoft.com>2022-12-10 23:02:40 +0000
committerMartin Ashby <martin@ashbysoft.com>2022-12-10 23:02:40 +0000
commit5257941f40554da3f8df074443a4c087dcff7004 (patch)
treeb55af272f52f961f8fa02468861de2c255d8a9e2 /exercises/036_enums2.zig
parent0e447c7956410a993614f9337d6219e017722443 (diff)
downloadziglings-5257941f40554da3f8df074443a4c087dcff7004.tar.gz
ziglings-5257941f40554da3f8df074443a4c087dcff7004.tar.bz2
ziglings-5257941f40554da3f8df074443a4c087dcff7004.tar.xz
ziglings-5257941f40554da3f8df074443a4c087dcff7004.zip
25-60 completemain
Diffstat (limited to 'exercises/036_enums2.zig')
-rw-r--r--exercises/036_enums2.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/036_enums2.zig b/exercises/036_enums2.zig
index 820a71e..c1e5c9b 100644
--- a/exercises/036_enums2.zig
+++ b/exercises/036_enums2.zig
@@ -31,7 +31,7 @@ const std = @import("std");
const Color = enum(u32) {
red = 0xff0000,
green = 0x00ff00,
- blue = ???,
+ blue = 0x0000ff,
};
pub fn main() void {
@@ -53,12 +53,12 @@ pub fn main() void {
\\<p>
\\ <span style="color: #{x:0>6}">Red</span>
\\ <span style="color: #{x:0>6}">Green</span>
- \\ <span style="color: #{}">Blue</span>
+ \\ <span style="color: #{x:0>6}">Blue</span>
\\</p>
\\
, .{
@enumToInt(Color.red),
@enumToInt(Color.green),
- @enumToInt(???), // Oops! We're missing something!
+ @enumToInt(Color.blue),
});
}