Help for this page

Select Code to Download


  1. or download this
    use v5.14;
    chomp(my $word = <STDIN>); #get word from command line
    ...
          say $name;  # print out the name with a newline (say)
       }
    }
    
  2. or download this
    use v5.14;
    chomp(my $word = <STDIN>); 
    ...
          say $name;
       }
    }