mirror of
https://github.com/AleoHQ/leo.git
synced 2025-01-07 02:19:52 +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);
|
||
|
}
|
||
|
}
|