mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 16:11:35 +03:00
7 lines
127 B
Plaintext
7 lines
127 B
Plaintext
|
function main() {
|
||
|
let a = [1u8; 10];
|
||
|
for i in 0..10 {
|
||
|
let x = a[i..10];
|
||
|
console.debug("{}", x);
|
||
|
}
|
||
|
}
|