From 5e3ada11a955c436470289db0e51367f1ae9ffe7 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Mon, 15 Dec 2025 20:00:27 +0700 Subject: [PATCH] Add zig and go for hello-redox --- recipes/tests/hello-redox/files/test.go | 7 +++++++ recipes/tests/hello-redox/files/test.zig | 5 +++++ 2 files changed, 12 insertions(+) create mode 100644 recipes/tests/hello-redox/files/test.go create mode 100644 recipes/tests/hello-redox/files/test.zig diff --git a/recipes/tests/hello-redox/files/test.go b/recipes/tests/hello-redox/files/test.go new file mode 100644 index 000000000..10b79ce66 --- /dev/null +++ b/recipes/tests/hello-redox/files/test.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, Redox!") +} diff --git a/recipes/tests/hello-redox/files/test.zig b/recipes/tests/hello-redox/files/test.zig new file mode 100644 index 000000000..276595f1b --- /dev/null +++ b/recipes/tests/hello-redox/files/test.zig @@ -0,0 +1,5 @@ +const std = @import("std"); + +pub fn main() !void { + std.debug.print("Hello, Redox!\n", .{}); +}