commit eaf1915bdbf855695f0ce470942315a0daa264cc parent 77680a8590f46751eef0a8a19eaf35b2dbf32f74 Author: NunoSempere <nuno.sempere@protonmail.com> Date: Sat, 20 May 2023 20:00:58 -0400 add wip folder. Diffstat:
| A | wip/zig/hello-world.zig | | | 5 | +++++ |
| A | wip/zig/install-zig.sh | | | 1 | + |
| A | wip/zig/notes.md | | | 1 | + |
3 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/wip/zig/hello-world.zig b/wip/zig/hello-world.zig @@ -0,0 +1,5 @@ +const std = @import("std"); + +pub fn main() void { + std.debug.print("Hello, {s}!\n", .{"World"}); +} diff --git a/wip/zig/install-zig.sh b/wip/zig/install-zig.sh @@ -0,0 +1 @@ +See <https://ziglang.org/learn/getting-started/#tagged-release-or-nightly-build> diff --git a/wip/zig/notes.md b/wip/zig/notes.md @@ -0,0 +1 @@ +https://ziglearn.org/chapter-1/