mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-23 21:34:18 +08:00
6 lines
98 B
Zig
6 lines
98 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() !void {
|
|
std.debug.print("Hello, Redox!\n", .{});
|
|
}
|