Help for this page

Select Code to Download


  1. or download this
    $ perl -E 'sub W { grep { say "x"; return "z" } 1; say "y" } W'
    x
    
  2. or download this
    $ perl -E 'sub W { grep { say "x"; return "z" } 1; say "y" } say W'
    x
    z
    
  3. or download this
    $ perl -E 'sub W { grep { say "x" } 1; say "y" } W'
    x
    y