mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 08:02:32 +00:00
16 lines
212 B
Zig
16 lines
212 B
Zig
|
const std = @import("std");
|
||
|
|
||
|
pub fn main() void {
|
||
|
foo() catch print();
|
||
|
}
|
||
|
|
||
|
fn foo() anyerror!void {}
|
||
|
|
||
|
fn print() void {
|
||
|
_ = std.os.write(1, "Hello, World!\n") catch {};
|
||
|
}
|
||
|
|
||
|
// run
|
||
|
// target=x86_64-macos
|
||
|
//
|