Skip to content
This repository has been archived by the owner on Oct 23, 2018. It is now read-only.

Commit

Permalink
Add hello world written in Zig.
Browse files Browse the repository at this point in the history
  • Loading branch information
Syfaro committed Oct 9, 2018
1 parent d95881c commit 1ef8837
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Zig/hello.zig
@@ -0,0 +1,6 @@
const std = @import("std");

pub fn main() !void {
var stdout = try std.io.getStdOut();
try stdout.write("Hello, world!\n");
}

0 comments on commit 1ef8837

Please sign in to comment.