Lox Code 1

fun loopPrinter(addMe) {
  var i = 0;
  while (i < 10) {
    print addMe + i;
    i = i + 1;
  }
}

loopPrinter(5);