Merge branch 'hello-go-zig' into 'master'

Add zig and go for hello-redox

See merge request redox-os/redox!1768
This commit is contained in:
Jeremy Soller 2025-12-15 07:28:49 -07:00
commit fdb9569a6c
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, Redox!")
}

View File

@ -0,0 +1,5 @@
const std = @import("std");
pub fn main() !void {
std.debug.print("Hello, Redox!\n", .{});
}