diff options
| author | Paul Sorensen <[email protected]> | 2021-11-10 11:30:37 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-11-10 11:30:37 -0500 |
| commit | bc402e8eb109972a0a6f05a9a1cdc4a72149efeb (patch) | |
| tree | aac4f5358197b83883087354918aedcee9b033b6 | |
| parent | 86e017eb328b2bbb1e22113aa133e64c9c1913d8 (diff) | |
| download | ziglings-bc402e8eb109972a0a6f05a9a1cdc4a72149efeb.tar.xz ziglings-bc402e8eb109972a0a6f05a9a1cdc4a72149efeb.zip | |
Update 034_quiz4.zig
Closes #76 By making comment more clear
| -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; |
