1
1
mirror of https://github.com/AleoHQ/leo.git synced 2025-01-07 02:19:52 +03:00
leo/compiler/tests/integers/i16/div.leo
2020-08-16 19:14:26 -07:00

3 lines
73 B
Plaintext

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