zig
Code
Branches
Tags
Commits
master
zig
/
test
/
standalone
/
dependencyFromBuildZig
/
other
/
add.zig
Top
1
pub
fn
add
(
x
:
u32
,
y
:
u32
)
u32
{
2
return
x
+
y
;
3
}