Help for this page

Select Code to Download


  1. or download this
    > perl -MO=Deparse -pe"#stuff#"
    LINE: while (defined($_ = <ARGV>)) {
    ...
    continue {
        print $_;
    }
    
  2. or download this
    > perl -MO=Deparse -ne"#stuff#"
    LINE: while (defined($_ = <ARGV>)) {
        ();
    }