add zig as a language

This commit is contained in:
Felix Van der Jeugt 2021-12-02 10:25:13 +01:00
parent b98722582b
commit d69c3ceb73
No known key found for this signature in database
GPG key ID: 58B209295023754D
4 changed files with 19 additions and 6 deletions

6
Day01/Part1.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, {s}!\n", .{"world"});
}