Home » Ruby redo and retry statement

Ruby redo and retry statement

by Online Tutorials Library

Ruby redo Statement

Ruby redo statement is used to repeat the current iteration of the loop. The redo statement is executed without evaluating the loop’s condition.

The redo statement is used inside a loop.

Syntax:

Example:

Output:

Ruby redo statement 1


Ruby retry Statement

Ruby retry statement is used to repeat the whole loop iteration from the start.

The retry statement is used inside a loop.

Syntax:

Next TopicRuby comments

You may also like