is there a loop type that you can just enter the n...
# getting-started
h
is there a loop type that you can just enter the number of times you want to do it, or do you just always have to do
for(i in 0 until numTimes)
even though you won't be using the i at all?
i
repeat(n) { ... }
h
thank you kindly