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

View File

@@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every
Make sure to see [contributing.md](/contributing.md) for instructions on contributing to the project! Make sure to see [contributing.md](/contributing.md) for instructions on contributing to the project!
<!--Languages start--> <!--Languages start-->
## Languages (714 total) ## Languages (715 total)
* [05Ab1E](%23/05AB1E) * [05Ab1E](%23/05AB1E)
* [0815](%23/0815.0815) * [0815](%23/0815.0815)
@@ -718,6 +718,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib
* [Zbd](z/zbd) * [Zbd](z/zbd)
* [Zepto](z/zepto.zp) * [Zepto](z/zepto.zp)
* [Zetaplex](z/zetaplex.zeta) * [Zetaplex](z/zetaplex.zeta)
* [Zig](z/zig.zig)
* [Zim](z/zim.zim) * [Zim](z/zim.zim)
* [Zimbu](z/zimbu.zu) * [Zimbu](z/zimbu.zu)
* [Zinc](z/zinc.zn) * [Zinc](z/zinc.zn)

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", .{});
}