1const std = @import("std");
2const mod = @import("mod");
3
4export fn work(x: u32) u32 {
5    return mod.double(x);
6}