Help for this page

Select Code to Download


  1. or download this
    sub w(&$){&{$_[1]}while&{$_[0]}}sub d(&){$_[0]}
    # then, instead of while (foo) { bar },
    w{foo}d{bar};
    
  2. or download this
    sub l(&){{&{$_[0]};redo}}sub w{$_[0]||last}
    # then, instead of while (foo) { bar },
    l{w foo;bar};