Files
2023-11-06 11:47:56 +08:00

6 lines
77 B
Plaintext

#While Statement Test
i = 0
while i < 10:
print("**********")
i += 1