Add a test for everything we fix...

This commit is contained in:
K. Lange 2021-01-31 09:57:15 +09:00
parent df25225c64
commit 67460145fa
2 changed files with 8 additions and 0 deletions

4
test/testTupleIter.krk Normal file
View File

@ -0,0 +1,4 @@
print([x * 5 for x in (1,2,3)])
for x in (1,2,3):
print(x)

View File

@ -0,0 +1,4 @@
[5, 10, 15]
1
2
3