10 lines
208 B
Zig
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});
|
|
}
|
|
}
|