voxel-test/test.zig

6 lines
145 B
Zig
Raw Normal View History

2025-04-20 00:12:04 +01:00
const std = @import("std");
pub fn main() !void {
const stdout = std.io.getStdOut().writer();
try stdout.print("hello world!\n", .{});
}