Files
pybug/test.py

11 lines
129 B
Python

def main():
print("hello world")
x = 50
for i in range(x):
print(i)
if __name__ == "__main__":
main()