mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 00:21:47 +03:00
10 lines
177 B
Plaintext
10 lines
177 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/main_tuple.in
|
|
*/
|
|
|
|
function main(const x: (u8, bool, u8)) -> bool {
|
|
return x.0 == 10 && x.1 == true && x.2 == 10;
|
|
}
|