Control flow / Loops
"each" loop
"for-in" loop
"each_with_index" loop
"while" loop
"do-while" loop
"until" loop
"upto" loop
"step" loop
"times" loop
Infinite loop
5
.
times
{|i|
puts
"
#{i}
^3 =
#{i**
3
}
"
}
# 0^3 = 0
# 1^3 = 1
# 2^3 = 8
# 3^3 = 27
# 4^3 = 64