OILS
/
opy
/
gold
/ continue_.py
View on Github
|
oilshell.org
7 lines, 6 significant
1
#!/usr/bin/env python2
2
i = 0
3
while i < 20:
4
i = i + 1
5
if i % 2 == 0:
6
continue
7
print(i)