diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-08-19 08:33:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-19 08:33:17 -0400 |
commit | 38f8737163ecd8a52dedbd7a1b5707871be06c04 (patch) | |
tree | 39f2dbfd90b96c3e016e79a8b522037dadfd666c /exercises/009_if.zig | |
parent | 64a6befb394a4d0bf04da901edfd31e8e32d5fa8 (diff) | |
parent | 4bf560060add11c95feb333c55076342302f4f90 (diff) | |
download | ziglings-38f8737163ecd8a52dedbd7a1b5707871be06c04.tar.gz ziglings-38f8737163ecd8a52dedbd7a1b5707871be06c04.tar.bz2 ziglings-38f8737163ecd8a52dedbd7a1b5707871be06c04.tar.xz ziglings-38f8737163ecd8a52dedbd7a1b5707871be06c04.zip |
Merge pull request #68 from Palm404/main
feat: Add more comparison operator coverage in 009_if.zig
Diffstat (limited to 'exercises/009_if.zig')
-rw-r--r-- | exercises/009_if.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/exercises/009_if.zig b/exercises/009_if.zig index 284563d..4536fc3 100644 --- a/exercises/009_if.zig +++ b/exercises/009_if.zig @@ -11,6 +11,7 @@ // // a == b means "a equals b" // a < b means "a is less than b" +// a > b means "a is greater than b" // a != b means "a does not equal b" // // The important thing about Zig's "if" is that it *only* accepts |