1
1
mirror of https://github.com/AleoHQ/leo.git synced 2025-01-08 19:19:23 +03:00
leo/asg/tests/pass/function/newlines.leo
2021-01-25 07:19:38 -08:00

9 lines
87 B
Plaintext

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