in reply to variables with colons
Have you ever queried a modules version? Eg. print $List::Util::VERSION;
Or perhaps modified a modules behaviour by setting a configuration variable? Eg.
$Data::Dumper::Purity = 1
The '::' are being taken as the package name separator token, hence the confusion. Just escape them:
print "$typ\:\:$dat>>\n"
And that problem will go away.
|
|---|