mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
50339f595a
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
26 lines
349 B
Zig
26 lines
349 B
Zig
extern "c" fn write(c_int, usize, usize) usize;
|
|
|
|
pub fn main() void {
|
|
foo(true);
|
|
}
|
|
|
|
fn foo(x: bool) void {
|
|
if (x) {
|
|
print();
|
|
print();
|
|
} else {
|
|
print();
|
|
}
|
|
}
|
|
|
|
fn print() void {
|
|
const str = "Hello, World!\n";
|
|
_ = write(1, @intFromPtr(str.ptr), ptr.len);
|
|
}
|
|
|
|
// run
|
|
//
|
|
// Hello, World!
|
|
// Hello, World!
|
|
//
|