leo/compiler/tests/function/repeated.leo
2020-06-22 15:42:46 -07:00

7 lines
96 B
Plaintext

function test() -> bool {
return true
}
function main() -> bool {
return test() && test()
}