Help for this page

Select Code to Download


  1. or download this
    %verbs =
    {"jumped","eat","killed"};
    
    %pronoun =
    {"I","You","He","She"};
    
  2. or download this
    He jumped
    She killed
    I eat
    
  3. or download this
    foreach my $verb (shuffle keys %verb)
    {
      print $RANDOM_PRONOUN.' '.$verb.';'
    }