in reply to Concatinating Numbers-Error: Bug or Feature
To avoid the concatination operator problem, use , in
print and not ..
What you wrote, is exactly the same as:
When you write it as:print "hallo".55.0"test"; # <= error
The perlparser (B::Deparse) will rewrite it asprint "hallo" . 55 . "test";
Conclusion;print 'hallo55test';
I hope this helps.print "hallo",55,"test";
|
|---|