mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 15:41:36 +03:00
12 lines
193 B
Plaintext
12 lines
193 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/true_true.in
|
|
*/
|
|
|
|
function main(a: (bool, bool)) -> (bool, bool) {
|
|
let b = (a, false);
|
|
|
|
return (b.1 || b.0.0, b.1 && b.0.1);
|
|
}
|