This commit is contained in:
Abu Sakib
2020-11-23 09:16:20 +06:00
committed by GitHub
parent 035ab612a7
commit 585df87730
2 changed files with 8 additions and 1 deletions

6
z/zig.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", .{});
}