Help for this page

Select Code to Download


  1. or download this
    >perl -wle"print('x'),last while 1; print('y');"
    x
    ...
    >perl -wle"print('x'),last for qw(a b c); print('y');"
    x
    y
    
  2. or download this
    >perl -wle"do { print('x'); last } while 1; print('y');"
    x
    ...
    >perl -wle"do { print('x'); last } for qw(a b c); print('y');"
    x
    y