This website requires JavaScript.
Explore
Help
Sign In
AleoHQ
/
leo
Watch
1
Star
1
Fork
0
You've already forked leo
mirror of
https://github.com/AleoHQ/leo.git
synced
2025-01-07 02:19:52 +03:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
2c6a34fea7
leo
/
compiler
/
tests
/
statements
/
iteration_variable.leo
7 lines
98 B
Plaintext
Raw
Normal View
History
Unescape
Escape
add passing iteration test with loop variable
2021-03-17 22:35:16 +03:00
function main() {
test that was failing coverage only existed on master
2021-03-22 18:47:34 +03:00
const x: u32 = 5;
add passing iteration test with loop variable
2021-03-17 22:35:16 +03:00
for i in 0..x {
console.log("{}", i);
}
}
Reference in New Issue
Copy Permalink