leo/compiler/tests/function/return.leo

7 lines
91 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() {
assert_eq!(one(), 1u32);
}