pg has asked for the wisdom of the Perl Monks concerning the following question:
use strict; format Something = @###.## $a . my $ref_old_a = \$a;#this makes the first $a still touchable my $a = 200; #declare the second $a $$ref_old_a = 100;#touch the first one by ref $~ = "Something"; write;#print out 100.00
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: A correction to my earlier comment about format
by mojotoad (Monsignor) on Dec 16, 2002 at 20:27 UTC |