mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-11 03:19:00 +03:00
20 lines
321 B
Plaintext
20 lines
321 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/u32_3.in
|
|
*/
|
|
|
|
program test.aleo {
|
|
transition main(x: u32) -> u32 {
|
|
let y: u32 = x;
|
|
|
|
for i: u32 in 0u32..2u32 {
|
|
for j: u32 in 0u32..2u32 {
|
|
y = y + 1u32;
|
|
}
|
|
}
|
|
|
|
return y;
|
|
}
|
|
}
|