refactor, splitting code into files

This commit is contained in:
Radonchnk 2025-04-20 00:12:04 +01:00
parent 6bf75f87ab
commit 77e1080c24
4 changed files with 96 additions and 46 deletions

6
test.zig Normal file
View file

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