in reply to Re: A C-like brain in a Perl-like world
in thread A C-like brain in a Perl-like world
sub merge { my %hash; @hash{ @_ } = @_; @hash{ sort keys %hash }; }
Update: last line was originally map $hash{ $_ }, sort keys %hash;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: A C-like brain in a Perl-like world
by runrig (Abbot) on Jun 06, 2005 at 23:57 UTC | |
by Aristotle (Chancellor) on Jun 09, 2005 at 01:43 UTC |