while (C1) {
unless (C2) {
statement;
next;
}
statements;
next unless C3;
statements;
}
while (C1) {
statement, next unless C2;
statements;
next unless C3;
statements;
}
Forward to Loop Hoisting
Back to Reduce Complexity
Up to index
Copyright © 1998, Tom Christiansen
All rights reserved.