mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-24 07:48:04 +03:00
7 lines
131 B
Plaintext
7 lines
131 B
Plaintext
function main() {
|
|
const a = [1u8; 10];
|
|
for i in 0..10 {
|
|
const x = a[i..10];
|
|
console.debug("{}", x);
|
|
}
|
|
} |