|
Hi,
I created a simple script to figure out a problem that I saw while running our code. Here is script:
#!/import/disk1/local/bin/perl588 -w
use Tie::InsertOrderHash;
tie my %dm_const_hash = (), "Tie::InsertOrderHash";
# MAIN
print "Hello world!\n" ;
Running the script produces following error:
Can't locate object method "TIESCALAR" via package "Tie::InsertOrderHash" at ./insertorderhashtest_588.pl line 4.
I do have package Tie::InsertOrderHash installed. Where is the method TIESCALAR defined? How do I fix this problem?
|
|
|
|
|
|
|
// |