1
1
mirror of https://github.com/ProvableHQ/leo.git synced 2025-01-02 23:29:02 +03:00
leo/compiler/tests/function/newlines.leo
2021-04-14 15:27:57 -07:00

9 lines
88 B
Plaintext

function main(
a: u32,
b: u32,
) -> (
u32,
u32,
) {
return (a, b);
}