mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 16:12:33 +00:00
c6fb798740
This reverts commit 67db2b85b7
.
11 lines
163 B
Zig
11 lines
163 B
Zig
const std = @import("std");
|
|
pub fn main() void {
|
|
const str = "Hello World!\n";
|
|
_ = std.os.plan9.pwrite(1, str, str.len, 0);
|
|
}
|
|
|
|
// run
|
|
//
|
|
// Hello World
|
|
//
|