diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-02-03 19:19:31 -0500 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-02-03 19:19:31 -0500 |
commit | 738a9f6cda62f3570e44dc93f8e200afc2cc1b51 (patch) | |
tree | 0f690aeaee95d317d80ee3913b0fb0b6245b1edb /34_quiz4.zig | |
parent | cd80aeb19061b9d222d24cdb4d0764a210536531 (diff) | |
download | ziglings-738a9f6cda62f3570e44dc93f8e200afc2cc1b51.tar.gz ziglings-738a9f6cda62f3570e44dc93f8e200afc2cc1b51.tar.bz2 ziglings-738a9f6cda62f3570e44dc93f8e200afc2cc1b51.tar.xz ziglings-738a9f6cda62f3570e44dc93f8e200afc2cc1b51.zip |
Inserted ex. 32 unreachable, added quiz4.
Diffstat (limited to '34_quiz4.zig')
-rw-r--r-- | 34_quiz4.zig | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/34_quiz4.zig b/34_quiz4.zig new file mode 100644 index 0000000..43734b7 --- /dev/null +++ b/34_quiz4.zig @@ -0,0 +1,24 @@ +// +// Quiz time. See if you can make this program work! +// +// Solve this any way you like, just be sure the output is: +// +// my_num=42 +// +const std = @import("std"); + +const NumError = error{ IllegalNumber }; + +pub fn main() void { + const stdout = std.io.getStdOut().writer(); + + const my_num: u32 = getNumber(); + + try stdout.print("my_num={}\n", .{my_num}); +} + +// Just don't modify this function. It's "perfect" the way it is. :-) +fn getNumber() NumError!u32 { + if( false ) return NumError.IllegalNumber; + return 42; +} |