mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
7 lines
114 B
Zig
7 lines
114 B
Zig
const std = @import("std");
|
|
const mod = @import("mod");
|
|
|
|
export fn work(x: u32) u32 {
|
|
return mod.double(x);
|
|
}
|