mirror of
https://github.com/AleoHQ/leo.git
synced 2025-01-05 08:50:21 +03:00
7 lines
96 B
Plaintext
7 lines
96 B
Plaintext
function main() {
|
|
let x: u32 = 5;
|
|
|
|
for i in 0..x {
|
|
console.log("{}", i);
|
|
}
|
|
} |