blob: 444a254078f2b45d7ea5b01f513a5e6f19fc6d37 (
plain)
1
2
3
4
5
6
7
8
|
const std = @import("std");
extern fn add(a: i32, b: i32) i32;
pub fn main() !void {
const stdout = std.io.getStdOut().writer();
try stdout.print("Hello, {s} - {d}!\n", .{"world", add(1, 1)});
}
|