redo

redo

redo LABEL

redo EXPR

redo

The redo command restarts the loop block without evaluating the conditional again- The continue block, if any, is not executed. If the LABEL is omitted, the command refers to the innermost enclosing loop. The redo EXPR form, available starting in Perl 5.18.0, allows a label name to be computed at run time, and is otherwise identical to redo LABEL . Programs that want to lie to themselves about what was just input normally use this command:

登录查看完整内容