summarylogtreecommitdiffstats
path: root/hello.zig
blob: 9b93b1132c80ce5ce0c60de4bd59c7c3705739f2 (plain)
1
2
3
4
5
6
7
8
9
const std = @import("std");

pub fn main() !void {
    std.debug.print("Hello World\n", .{});
}

test "tester" {
    try std.testing.expectEqual(4 + 5, 9);
}