2023-02-25 01:48

This commit is contained in:
2023-02-25 01:48:44 +09:00
commit 90d9816ea2
9 changed files with 151 additions and 0 deletions

7
flow.py Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/python
a = 10
if (a > 0):
print(a)
for a in reversed(range(5)):
print(a)