--my third commit
	-- print(i+2,"hello world again")
This commit is contained in:
George 2026-01-23 23:09:21 +05:30
parent 4ed8ab167a
commit d4df442097
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,4 @@
for i in range(10): for i in range(10):
print(i,"hello worl") print(i,"hello worl")
print(i+1,"hello world") print(i+1,"hello world")
print(i+2,"hello world again")

View File

@ -1,2 +1,3 @@
my first commit my first commit
my second commit my second commit
my third commit