in reply to Re: Control Structures
in thread Control Structures
which is really just a while-do:for(; do { # pre-test code some_condition() }; do { post-code }) {}
This started out as a joke, but that construct is sensible enough not to be a joke. Bare-block-redo is still better, though.while (do { # pre-test code some_condition() }) { # post-code }
|
|---|