test commit!

This commit is contained in:
coast 2025-08-10 22:29:38 +03:30
commit 47e25b00d6
2 changed files with 8 additions and 0 deletions

1
README.md Normal file
View file

@ -0,0 +1 @@
First repo on the instance! Just for tests!

7
main.zig Normal file
View file

@ -0,0 +1,7 @@
const std = @import("std");
pub fn main() void
{
std.debug.print("hello! i am {s}!\n", .{"coast"});
return;
}