On 11-04-25 09:20 PM, siegfr...@heintze.com wrote:
Is there a counterpart to the
lisp set function in Perl?
Not really. Consider using a hash instead.
$hash{x} = 23;
To view your data structures, use Data::Dumper;
use Data::Dumper;
print Dumper( \%hash );
Data::Dumper is a standard module that comes with Perl. To see a list
of all the standard pragmatics and modules:
perldoc perlmodlib
--
Just my 0.00000002 million dollars worth,
Shawn
Confusion is the first step of understanding.
Programming is as much about organization and communication
as it is about coding.
The secret to great software: Fail early & often.
Eliminate software piracy: use only FLOSS.
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/