in reply to Re^5: Getting Getopt::Long values into a hash
in thread Getting Getopt::Long values into a hash
The problem with perl I think is that different types can have the same name.#! /usr/bin/perl my %mh ; $mh{a} = "b" ; $mh->{b} = "c" ; print "values are hash=$mh{a}, hash=$mh{b} or hashref=$mh->{b} \n" ;
|
|---|