feat: Add more comparison operator coverage in 009_if.zig

This commit is contained in:
unknown 2021-08-16 23:56:10 -07:00
parent 64a6befb39
commit 57186aa56d
1 changed files with 1 additions and 0 deletions

View File

@ -10,6 +10,7 @@
// Zig has the "usual" comparison operators such as:
//
// a == b means "a equals b"
// a > b means "a is greater than b"
// a < b means "a is less than b"
// a != b means "a does not equal b"
//