mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 15:42:49 +00:00
50339f595a
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
17 lines
233 B
Zig
17 lines
233 B
Zig
extern "c" fn write(c_int, usize, usize) usize;
|
|
|
|
pub fn main() void {
|
|
print();
|
|
}
|
|
|
|
fn print() void {
|
|
const msg = @intFromPtr("Hello, World!\n");
|
|
const len = 14;
|
|
_ = write(1, msg, len);
|
|
}
|
|
|
|
// run
|
|
//
|
|
// Hello, World!
|
|
//
|