Files
BH-Python-Interpreter-2023/testcases/basic-testcases/test11.in
Wankupi 2e29af68b3 init
2023-10-30 19:50:48 +08:00

8 lines
82 B
Plaintext

#Function Test
def foo(a):
print(a)
i = 0
while i < 10:
foo(i)
i += 1