diff options
author | Martin Ashby <martin@ashbysoft.com> | 2022-12-10 23:02:40 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2022-12-10 23:02:40 +0000 |
commit | 5257941f40554da3f8df074443a4c087dcff7004 (patch) | |
tree | b55af272f52f961f8fa02468861de2c255d8a9e2 /exercises/030_switch.zig | |
parent | 0e447c7956410a993614f9337d6219e017722443 (diff) | |
download | ziglings-main.tar.gz ziglings-main.tar.bz2 ziglings-main.tar.xz ziglings-main.zip |
25-60 completemain
Diffstat (limited to 'exercises/030_switch.zig')
-rw-r--r-- | exercises/030_switch.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/exercises/030_switch.zig b/exercises/030_switch.zig index cb983f5..04e6b6d 100644 --- a/exercises/030_switch.zig +++ b/exercises/030_switch.zig @@ -46,6 +46,7 @@ pub fn main() void { // match for every possible value). Please add an "else" // to this switch to print a question mark "?" when c is // not one of the existing matches. + else => std.debug.print("?", .{}), } } |