1
0
Fork 0
mirror of https://github.com/ratfactor/ziglings synced 2024-05-18 10:46:05 +02:00

fix: Change order to match 011_while.zig

This commit is contained in:
Palm 2021-08-17 00:01:55 -07:00 committed by GitHub
parent 57186aa56d
commit a900877e40
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,8 +10,8 @@
// Zig has the "usual" comparison operators such as: // Zig has the "usual" comparison operators such as:
// //
// a == b means "a equals b" // 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 is less than b"
// a > b means "a is greater than b"
// a != b means "a does not equal b" // a != b means "a does not equal b"
// //
// The important thing about Zig's "if" is that it *only* accepts // The important thing about Zig's "if" is that it *only* accepts