Help for this page

Select Code to Download


  1. or download this
    my $word = 'abracadabra';
    my @list = qw( a b c d e );
    ...
    
    print("remaining word: ", $word, "\n");  # raaabra
    print("remaining list: ", @list, "\n");  # e
    
  2. or download this
    remaining word: raaabra
    remaining list: e
    
  3. or download this
    remaining word: rr
    remaining list: e