http://www.perlmonks.org?node_id=1034009


in reply to scoping inside the loop

case 1 does not loop because the "until" condition is met immediately ($i=1 which is less then 10).

Replies are listed 'Best First'.
Re^2: scoping inside the loop
by LanX (Saint) on May 17, 2013 at 19:06 UTC
    and otherwise it's an endless-loop

    Cheers Rolf

    ( addicted to the Perl Programming Language)

      That makes clear