Help for this page

Select Code to Download


  1. or download this
    my $file = <STDIN>;
    chomp($file);
    $file ||= "somelist";
    
  2. or download this
    my $file = <STDIN>;
    chomp($file);
    $file = "somelist"
       if not length $file;