Add a test for everything we fix...
This commit is contained in:
parent
df25225c64
commit
67460145fa
4
test/testTupleIter.krk
Normal file
4
test/testTupleIter.krk
Normal file
@ -0,0 +1,4 @@
|
||||
print([x * 5 for x in (1,2,3)])
|
||||
|
||||
for x in (1,2,3):
|
||||
print(x)
|
4
test/testTupleIter.krk.expect
Normal file
4
test/testTupleIter.krk.expect
Normal file
@ -0,0 +1,4 @@
|
||||
[5, 10, 15]
|
||||
1
|
||||
2
|
||||
3
|
Loading…
Reference in New Issue
Block a user