Help for this page

Select Code to Download


  1. or download this
    $ perl -MO=Concise,-exec -e'while (foo()) { bar() }'
    3  <{> enterloop(next->8 last->d redo->4) v
    ...
    
    $ perl -MO=Concise,-exec -e'bar() for foo()'
    9  <{> enteriter(next->d last->g redo->a) lK
    
  2. or download this
    LOOP_START:
       ( bar() ), goto LOOP_START if foo();
    
  3. or download this
    LOOP_START:
       do { bar() };
       goto LOOP_START unless foo();