in reply to what does @$ mean?
Please go through perlref and join for more information.#!/usr/bin/perl use strict; use warnings; my $msg = ['apple', 'banana', 'orange']; # array reference my @msg = @$msg; # dereferncing the arreay ref print "Dereferenced: @msg\n"; print join("\n",@$msg); # prints the array elem +ents sperated by "\n".
|
|---|