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