8 lines
82 B
Plaintext
8 lines
82 B
Plaintext
#Function Test
|
|
def foo(a):
|
|
print(a)
|
|
i = 0
|
|
while i < 10:
|
|
foo(i)
|
|
i += 1
|