mirror of
https://github.com/circify/circ.git
synced 2026-04-21 03:00:54 -04:00
7 lines
120 B
Plaintext
7 lines
120 B
Plaintext
def dbl<N, NN>(u32[N] a) -> u32[NN] {
|
|
return [...a, ...a];
|
|
}
|
|
|
|
def main() -> u32[6] {
|
|
return dbl([1u32, 2, 3]);
|
|
} |