leo/compiler/tests/function/return.leo

7 lines
82 B
Plaintext

function one() -> u32 {
return 1u32
}
function main() -> u32 {
return one()
}