Python: CG trace: Don't abuse example dir

This commit is contained in:
Rasmus Wriedt Larsen
2020-07-22 14:22:04 +02:00
parent ad2e336ead
commit 1e89388f2b
16 changed files with 37 additions and 27 deletions

View File

@@ -0,0 +1,7 @@
for i in range(10):
print(i)
[i + 1 for i in range(10)]
l = list(range(10))
[i + 1 for i in l]
[i + 1 for i in l]