Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: float: Perl is replacing dot with comma (automagic locale?)

by InfiniteSilence (Curate)
on May 15, 2014 at 14:52 UTC ( [id://1086158]=note: print w/replies, xml ) Need Help??


in reply to float: Perl is replacing dot with comma (automagic locale?)

When you run the code you wrote through the debugger you will notice that it executes the our ... statement after the subroutine has run. Some simple repositioning of code as this,

#!perl package My::Test; our $VERSION = 1.11; package My::Test::Print; our $VERSION = 1.2; sub printer { print "This is ". $My::Test::VERSION ."\n"; } package main; my $test = 1.23; print "test: $test \n"; print My::Test::Print::printer() ."\n"; 1;

Makes this output:

test: 1.23 This is 1.11

Note that I took the liberty of adding a VERSION in each different package which I think is what you meant to do.

Celebrate Intellectual Diversity

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1086158]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (6)
As of 2024-04-24 10:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found