summaryrefslogtreecommitdiff
path: root/tests/projects/zig/shared_library/src/main.zig
blob: 7dc7b2bc4b51cf7e6ff6a522f45289bf057fa717 (plain)
1
2
3
4
5
6
7
const std = @import("std");

extern fn add(a: i32, b: i32) i32;

pub fn main() !void {
    std.debug.print("Hello, {s} - {d}!\n", .{"world", add(1, 1)});
}