Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    use Test::More 'no_plan';
    ...
              \'T'
            ];
    1..2
    
  2. or download this
    my @dna = \qw( A T T G C );
    my @view = @dna[1,2];
    ...
    
    is( ${$view[0]}, ${$dna[1]},
        'changing ${$view[0]} changes ${$dna[1]}' );