#!/usr/bin/perl use Data::Dumper; use strict; use warnings; my @list = qw (hi there); print Dumper(@list); #### $VAR1 = 'hi'; $VAR2 = 'there';