Help for this page

Select Code to Download


  1. or download this
    $ perl -MO=Deparse -e'foreach (@a) { }'
    foreach $_ (@a) {
    ...
        ();
    }
    -e syntax OK
    
  2. or download this
    $ perl -MO=Deparse -e'for (a(); b(); c()) { }'
    for (a(); b(); c()) {
    ...
        ();
    }
    -e syntax OK