undar-lang/test/add.ul

10 lines
121 B
Plaintext
Executable File

print(add(1, 1) as str);
halt;
/**
* Add two numbers together
*/
function add(nat a, nat b) nat {
return a + b;
}