mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 07:32:26 +03:00
12 lines
206 B
Plaintext
12 lines
206 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/true_true.in
|
|
*/
|
|
|
|
function main(a: (bool, bool)) -> (bool, bool) {
|
|
let (a, b) = (a.0 ? false : true, a.1 ? false : true);
|
|
|
|
return (b, a);
|
|
}
|