leo/compiler/tests/integers/i32/negate.leo
2020-08-16 19:14:26 -07:00

3 lines
62 B
Plaintext

function main(a: i32, b: i32) {
console.assert(-a == b);
}