mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 13:42:24 +03:00
16 lines
163 B
Plaintext
16 lines
163 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/integers.in
|
|
*/
|
|
|
|
function main(
|
|
a: u32,
|
|
b: u32,
|
|
) -> (
|
|
u32,
|
|
u32,
|
|
) {
|
|
return (a, b);
|
|
}
|