exercism/zig/difference-of-squares/test.zig
2024-07-28 17:45:02 -04:00

10 lines
208 B
Zig

const std = @import("std");
const print = std.debug.print;
const pow = std.math.pow;
pub fn main() void {
// print("{d}", .{pow(usize, 3, 2)});
for (0..=10) |n| {
print("{d}", .{n});
}
}