leo/tests/compiler/function/return.leo

7 lines
98 B
Plaintext
Raw Normal View History

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