We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 509b2c2 commit 6db4d5cCopy full SHA for 6db4d5c
integration_tests/loop_04.py
@@ -1,6 +1,8 @@
1
from ltypes import i32
2
+
3
j: i32
4
i: i32
5
6
for i in range(5):
7
j = i
- print("j: ", j)
8
+ print("j: ", j)
integration_tests/loop_05.py
@@ -1,5 +1,7 @@
+from ltypes import i32
def f():
- j :i32 = 0
+ j: i32 = 0
while True:
j = j + 1
print(j)
@@ -8,4 +10,4 @@ def f():
10
print("out of outer loop")
9
11
assert j == 5
12
-f()
13
+f()
0 commit comments