ziglings/exercises/009_if.zig

33 lines
774 B
Zig
Raw Normal View History

2021-01-08 22:53:22 +00:00
//
// Now we get into the fun stuff, starting with the 'if' statement!
//
// if (true) {
// ...
// } else {
// ...
// }
2021-01-08 22:53:22 +00:00
//
// Zig has the "usual" comparison operators such as:
2021-01-08 22:53:22 +00: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 22:53:22 +00:00
//
// The important thing about Zig's "if" is that it *only* accepts
2021-01-08 22:53:22 +00: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;
// Please fix this condition:
2021-01-08 22:53:22 +00:00
if (foo) {
2021-02-14 14:22:41 +00:00
// We want our program to print this message!
2021-01-08 22:53:22 +00:00
std.debug.print("Foo is 1!\n", .{});
} else {
std.debug.print("Foo is not 1!\n", .{});
}
}