aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/dep_duplicate_module/mod.zig
blob: 019ae3be97444fdb84ea57c41387a06f43e751c9 (plain)
1
2
3
4
5
6
7
pub fn double(v: u32) u32 {
    return v * 2;
}

pub fn half(v: u32) u32 {
    return v / 2;
}