blob: 41b6e7b50bb3128a3eec9ef20ede3c17aedc95e9 (
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} - {*}!\n", .{"world", add(1, 1)});
}
|