Nov 17, 2005 #1 be12dune09a Programmer Joined Nov 17, 2005 Messages 24 Location RO can someone explain me how a variable in perl works whi can I assign ahash to " $a " variable???
Nov 17, 2005 #2 ishnid Programmer Joined Aug 29, 2003 Messages 1,422 Location IE Nope. In Perl $somevalue is a scalar that holds a single value, @somevalue is an array and %somevalue is a hash. Upvote 0 Downvote
Nope. In Perl $somevalue is a scalar that holds a single value, @somevalue is an array and %somevalue is a hash.