leo/compiler/tests/function/return.leo

7 lines
97 B
Plaintext
Raw Normal View History

function one() -> u32 {
2020-07-17 22:59:18 +03:00
return 1u32
}
2020-07-30 22:10:33 +03:00
function main() {
2020-08-17 05:14:26 +03:00
console.assert(one() == 1u32);
}