While Loop

i = 1

while i <= 10:
  print(i)
  i += 1

print("Done with loop")
//Output : 1
//         2
//         3
//         4
//         5
//         6
//         7
//         8
//         9
//         10
//         Done with loop