leo/compiler/tests/field/sub.leo

3 lines
79 B
Plaintext
Raw Normal View History

function main(a: field, b: field, c: field) {
2020-08-17 05:14:26 +03:00
console.assert(a - b == c);
2020-06-03 01:33:09 +03:00
}