Help for this page

Select Code to Download


  1. or download this
    while (defined(my $i = <STDIN>)) {
       chomp($i);
       print("[$i]\n");
    }
    
  2. or download this
    while (<STDIN>) {
       chomp;
       print("[$_]\n");
    }