// build.zig
const std = @import("std");
pub fn build(b: *std.build.Builder) void {
const hw_step = b.step("hw", "prints the hello world");
{
hw_step.dependOn(&b.addSystemCommand(&.{ "echo", "Hello" }).step);
hw_step.dependOn(&b.addSystemCommand(&.{ "echo", "世界!" }).step);
}
const fb_step = b.step("fb", "fizzbuzz");
fb_step.makeFn = fizzbuzz;
const doall_step = b.step("fbhw", "do all");
doall_step.dependOn(fb_step);
doall_step.dependOn(hw_step);
}
fn fizzbuzz(_: *std.build.Step) !void {
const stdout = std.io.getStdOut().writer();
var i: u8 = 1;
while (i <= 100) {
if (i % 15 == 0) {
try stdout.print("FizzBuzz\n", .{});
} else if (i % 3 == 0) {
try stdout.print("Fizz\n", .{});
} else if (i % 5 == 0) {
try stdout.print("Fizz\n", .{});
} else {
try stdout.print("{d}\n", .{i});
}
i += 1;
}
}