mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 23:52:02 +03:00
11 lines
179 B
Plaintext
11 lines
179 B
Plaintext
|
/*
|
||
|
namespace: Compile
|
||
|
expectation: Pass
|
||
|
input_file: inputs/true_true.in
|
||
|
*/
|
||
|
|
||
|
function main(a: (bool, bool)) -> (bool, bool) {
|
||
|
const a = (true, false);
|
||
|
|
||
|
return (a.0, a.1);
|
||
|
}
|