index = 1
while index <= 5
puts index
index +=1
end
for index in 0..5
puts index
end
5.times do |index|
puts index
end
my_array = [25,14,3,6,45,19]
for my_array in my_array
puts my_array
end
my_array.each do |arr|
puts arr
end
while [condition]
do something
end
num = 0
while num < 2 do
print("num = ", num)
end
print("End")
Code Example |
---|
Ruby :: ruby for loop |
Ruby :: ruby array remove by index |
Ruby :: rails faker |
Ruby :: ruby hash delete |
Ruby :: log rails |
Ruby :: %w meaning in ruby |
Ruby :: run a rake task |
Ruby :: rails debug |
Ruby :: ruby while loop |
Ruby :: arel_table rails |
Ruby :: ruby includethis or that |
Ruby :: rails loop through datetime |
Ruby :: rails migration remove column |
Ruby :: rspec create list |
Ruby :: rails duplicate record |
Ruby :: ! in ruby |
Ruby :: ruby on rails 4.2 how to add GET route |
Ruby :: ruby rspec change matcher |
Ruby :: symbols used in hashes |
Ruby :: ruby on rails recover data in params with form tag |
Ruby :: csv parse ruby |
Ruby :: ruby global property from object |
Ruby :: ruby String split second parameter |
Ruby :: get specific key value from array of hashes in ruby |
R :: r count number of na |
R :: i have library(dplyr) but i still get Error in select(., |
R :: r replace blank string with na |
R :: comments in r |
R :: correlation matrix in r |
R :: ggplot2 legend text |