1const std = @import("std"); 2 3extern const foo: u32; 4 5pub fn main() void { 6 var stdout_writer = std.fs.File.stdout().writerStreaming(&.{}); 7 stdout_writer.interface.print("Result: {d}", .{foo}) catch {}; 8}