$x = [1,2,3,4]; #$x is a reference to an array containing 1,2,3,4 
    # equivalent to:
@x = (1,2,3,4);
$x = \@x;
