diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-12-20 14:44:32 -0500 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-12-20 14:44:32 -0500 |
commit | 283fcb002b486f6fd0c07159e9dd9625fb5fddef (patch) | |
tree | 56de15db2871cd461dc07496b4c22eadbd3f9d9c /exercises/034_quiz4.zig | |
parent | d8c8e865915c66db048df471e0be46d03187ae25 (diff) | |
parent | 81aa756e26f0d2e67ea7e0a24e72cc1932333ecb (diff) | |
download | ziglings-283fcb002b486f6fd0c07159e9dd9625fb5fddef.tar.gz ziglings-283fcb002b486f6fd0c07159e9dd9625fb5fddef.tar.bz2 ziglings-283fcb002b486f6fd0c07159e9dd9625fb5fddef.tar.xz ziglings-283fcb002b486f6fd0c07159e9dd9625fb5fddef.zip |
Merge branch 'main' of github.com:ratfactor/ziglings into main
Diffstat (limited to 'exercises/034_quiz4.zig')
-rw-r--r-- | exercises/034_quiz4.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/034_quiz4.zig b/exercises/034_quiz4.zig index 6b0e3fc..2d843f2 100644 --- a/exercises/034_quiz4.zig +++ b/exercises/034_quiz4.zig @@ -17,7 +17,7 @@ pub fn main() void { try stdout.print("my_num={}\n", .{my_num}); } -// Just don't modify this function. It's "perfect" the way it is. :-) +// This function is obviously weird and non-functional. But you will not be changing it for this quiz. fn getNumber() NumError!u32 { if (false) return NumError.IllegalNumber; return 42; |