#!/usr/bin/perl

@aList = (1,2,3,6);  #assign four values to an array
print @aList;   #shows: 1236, the values of the list
print "\n"; #end line for readability
print "@aList\n";  #shows: 1 2 3 6 - note that when we interpolate,
    # Perl adds the spaces which is very convenient
