Answers for "while loop in rails"

0

ruby while loop

while conditional [do]

 # code to be executed

end
Posted by: Guest on July-26-2021
-1

rails loop

while $i < $num  do
   puts("Inside the loop i = #$i" )
   $i +=1
end
Posted by: Guest on April-06-2020

Browse Popular Code Answers by Language