Help for this page

Select Code to Download


  1. or download this
    my @strings = qw( acaabbbb );
    
    ...
        print("a: $a_counter\n");  # a: 3
        print("b: $b_counter\n");  # b: 4
    }
    
  2. or download this
    my @strings = qw( acaabbbb );
    
    ...
        print("a: $a_counter\n");  # a: 2
        print("b: $b_counter\n");  # b: 4
    }