mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 23:41:38 +03:00
14 lines
169 B
Plaintext
14 lines
169 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/dummy.in
|
|
*/
|
|
|
|
function one() -> u32 {
|
|
return 1u32;
|
|
}
|
|
|
|
function main() -> bool {
|
|
return one() == 1u32;
|
|
}
|