hello-world project

This commit is contained in:
2020-11-03 10:22:51 -08:00
parent 441744693e
commit edabc88227
3 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
const std = @import("std");
pub fn main() anyerror!void {
std.debug.print("This is my {} zig program!\n", .{"first"});
}