leo/asg/tests/pass/integers/i32/add.leo

3 lines
73 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
function main(a: i32, b: i32, c: i32) {
console.assert(a + b == c);
}