Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
standalone
dep_duplicate_module
main.zig
pretty
plain
permalink
blame
history
•
8 lines
•
138 B
1
const std = @import("std");
2
const mod = @import("mod");
3
4
extern fn work(x: u32) u32;
5
6
pub fn main() !void {
7
_ = work(mod.half(25));
8
}