mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-02 12:22:08 +03:00
7 lines
145 B
Plaintext
7 lines
145 B
Plaintext
|
// `{from}..{to}` copies the elements of one array into another exclusively
|
||
|
function main() -> u32[3] {
|
||
|
let a = [1u32; 4];
|
||
|
|
||
|
return a[0..3]
|
||
|
}
|