blob: cee64b6b7f4480f89d1be7c88e7153bb3253a646 (
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().outStream();
try stdout.print("Hello, {} - {}!\n", .{"world", add(1, 1)});
}
|