master
1const builtin = @import("builtin");
2
3pub fn the_add_function(a: u32, b: u32) u32 {
4    return a + b;
5}
6
7test the_add_function {
8    if (the_add_function(1, 2) != 3) unreachable;
9}