From: "Dan Muey" <[EMAIL PROTECTED]>
> If my module exports variables can I make it so they can't be changed?

Not sure this is what you are after but ...

        *x = \15;
        print "\$x=$x\n";
        $x = 16; # => Modification of a read-only value attempted at ...
        print "\$x=$x\n";

Jenda
===== [EMAIL PROTECTED] === http://Jenda.Krynicky.cz =====
When it comes to wine, women and song, wizards are allowed 
to get drunk and croon as much as they like.
        -- Terry Pratchett in Sourcery


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to