mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 22:04:19 +08:00
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:
commit
fdb9569a6c
7
recipes/tests/hello-redox/files/test.go
Normal file
7
recipes/tests/hello-redox/files/test.go
Normal file
@ -0,0 +1,7 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("Hello, Redox!")
|
||||
}
|
||||
5
recipes/tests/hello-redox/files/test.zig
Normal file
5
recipes/tests/hello-redox/files/test.zig
Normal file
@ -0,0 +1,5 @@
|
||||
const std = @import("std");
|
||||
|
||||
pub fn main() !void {
|
||||
std.debug.print("Hello, Redox!\n", .{});
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user