count.in 95 B

123456
  1. count = 1;
  2. while (count < 10) {
  3. print("count is: ", count, "\n");
  4. count = count + 1;
  5. }