Help for this page

Select Code to Download


  1. or download this
        while (<>) {
        chomp;    # avoid \n on last field
        @array = split(/:/);
        # ...
        }
    
  2. or download this
        chomp($cwd = `pwd`);
        chomp($answer = <STDIN>);