Closed xeus2001 closed 1 year ago
Signed-off-by: Alexander Lowey - Weber alexander.weber@here.com
Fixes the following example:
const std = @import("std"); const Arg = struct { num : i32 }; pub fn main() !void { const stdout = std.io.getStdOut().writer(); try stdout.print("Hello, {d}!\n", .{5}); }
Signed-off-by: Alexander Lowey - Weber alexander.weber@here.com