#!/usr/bin/perl use 5.016; my @arr1 = qw(a b c d e); my @arr2 = (3, 5, 7, 9); my $ref1 = \@arr1; my $ref1a = \@arr1; my $ref2 = \@arr2; say "\$ref1: $ref1 and \$ref1a: $ref1a"; say "\$ref2: $ref2; \@$ref2: @$ref2;" #Second half DEREFs the reference =head demo C:\>1032768-refs.pl $ref1: ARRAY(0x119ee3c) and $ref1a: ARRAY(0x119ee3c) $ref2: ARRAY(0x119f12c); @ARRAY(0x119f12c): 3 5 7 9;