mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 23:23:50 +03:00
15 lines
297 B
Plaintext
15 lines
297 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/three_ones.in
|
|
*/
|
|
|
|
// A spread operator `...` copies the elements of one array into another
|
|
function main(a: [u8; 3]) -> bool {
|
|
const b = [1u8, 1u8];
|
|
const c = [1u8, ...b];
|
|
const d = [...b, 1u8];
|
|
|
|
return a == c && d == a;
|
|
}
|