Closed
Description
Zig Version
0.12.0-dev.3644+05d975576
Steps to Reproduce and Observed Behavior
invoke "zig run" on any source file
Expected Behavior
According to "No hidden control flow" principle, it shouldn't output anything which is not a part of a program defined by user. Current approach is very confusing because it hides a first line of the debug output making it looks like the program had no output while it's simply hidden behind "LLVM Emit Object... LLVM Emit Object... MachO Flush..." string and forcing addition of std.debug.print("\n", .{});
to every program.