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

3 lines
60 B
Plaintext

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