mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-01 08:19:32 +03:00
13 lines
201 B
Plaintext
13 lines
201 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: ../inputs/dummy.in
|
|
*/
|
|
|
|
program test.aleo {
|
|
transition main(y: bool) -> bool {
|
|
const a: u32 = 0u32;
|
|
return y == true;
|
|
}
|
|
}
|