mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 15:42:49 +00:00
10 lines
180 B
Zig
10 lines
180 B
Zig
const builtin = @import("builtin");
|
|
|
|
pub fn the_add_function(a: u32, b: u32) u32 {
|
|
return a + b;
|
|
}
|
|
|
|
test the_add_function {
|
|
if (the_add_function(1, 2) != 3) unreachable;
|
|
}
|