mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 08:01:42 +03:00
16 lines
197 B
Plaintext
16 lines
197 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/dummy.in
|
|
*/
|
|
|
|
function one() -> bool {
|
|
return true;
|
|
}
|
|
|
|
function main() -> bool {
|
|
const a = one() && one();
|
|
|
|
return a == true;
|
|
}
|