2021-01-08 17:53:22 -05:00
|
|
|
//
|
|
|
|
// Now we get into the fun stuff, starting with the 'if' statement!
|
|
|
|
//
|
2021-02-07 11:06:51 -05:00
|
|
|
// if (true) {
|
|
|
|
// ...
|
|
|
|
// } else {
|
|
|
|
// ...
|
|
|
|
// }
|
2021-01-08 17:53:22 -05:00
|
|
|
//
|
2021-02-07 11:06:51 -05:00
|
|
|
// Zig has the "usual" comparison operators such as:
|
2021-01-08 17:53:22 -05:00
|
|
|
//
|
2021-02-07 11:06:51 -05:00
|
|
|
// a == b means "a equals b"
|
|
|
|
// a < b means "a is less than b"
|
|
|
|
// a !=b means "a does not equal b"
|
2021-01-08 17:53:22 -05:00
|
|
|
//
|
2021-02-07 11:06:51 -05:00
|
|
|
// The important thing about Zig's "if" is that it *only* accepts
|
2021-01-08 17:53:22 -05:00
|
|
|
// boolean values. It won't coerce numbers or other types of data
|
|
|
|
// to true and false.
|
|
|
|
//
|
|
|
|
const std = @import("std");
|
|
|
|
|
|
|
|
pub fn main() void {
|
|
|
|
const foo = 1;
|
|
|
|
|
2021-02-07 11:06:51 -05:00
|
|
|
// Please fix this condition:
|
2021-01-08 17:53:22 -05:00
|
|
|
if (foo) {
|
2021-02-14 09:22:41 -05:00
|
|
|
// We want our program to print this message!
|
2021-01-08 17:53:22 -05:00
|
|
|
std.debug.print("Foo is 1!\n", .{});
|
|
|
|
} else {
|
|
|
|
std.debug.print("Foo is not 1!\n", .{});
|
|
|
|
}
|
|
|
|
}
|