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", .{}); +}