1
1
mirror of https://github.com/ProvableHQ/leo.git synced 2025-01-08 11:58:02 +03:00
leo/tests/compiler/integers/u128/add.leo
2021-04-19 18:08:14 -07:00

3 lines
76 B
Plaintext

function main(a: u128, b: u128, c: u128) {
console.assert(a + b == c);
}