mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 15:12:31 +00:00
29 lines
736 B
Plaintext
29 lines
736 B
Plaintext
#target=x86_64-linux-selfhosted
|
|
#target=x86_64-linux-cbe
|
|
#target=x86_64-windows-cbe
|
|
#update=initial version
|
|
#file=main.zig
|
|
pub fn main() !void {
|
|
try foo(false);
|
|
}
|
|
fn foo(recurse: bool) !void {
|
|
const stdout = std.io.getStdOut().writer();
|
|
if (recurse) return foo(true);
|
|
try stdout.writeAll("non-recursive path\n");
|
|
}
|
|
const std = @import("std");
|
|
#expect_stdout="non-recursive path\n"
|
|
|
|
#update=eliminate recursion and change argument
|
|
#file=main.zig
|
|
pub fn main() !void {
|
|
try foo(true);
|
|
}
|
|
fn foo(recurse: bool) !void {
|
|
const stdout = std.io.getStdOut().writer();
|
|
if (recurse) return stdout.writeAll("x==1\n");
|
|
try stdout.writeAll("non-recursive path\n");
|
|
}
|
|
const std = @import("std");
|
|
#expect_stdout="x==1\n"
|