This commit is contained in:
Adam Millerchip 2021-12-26 23:12:46 +09:00
parent 6157d0b19d
commit fe663825bc
1 changed files with 3 additions and 3 deletions

View File

@ -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), // Oops! We're missing something!
});
}