voxel-test/test.zig
2025-04-20 00:12:04 +01:00

6 lines
No EOL
145 B
Zig

const std = @import("std");
pub fn main() !void {
const stdout = std.io.getStdOut().writer();
try stdout.print("hello world!\n", .{});
}