With the following example script I try to print the parameter[1] content. My question is how to print also FLORIDA word (in place $VAL) so I will get FLORIDA on print output
#!/usr/bin/perl
my @parameter = ();
my $VAL=FLORIDA;
$parameter[1]='45487539
$VAL
5847366
83564566';
print $parameter[1];
Output:
45487539
$VAL
5847366
83564566