Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: = vs cmp

by mrbbking (Hermit)
on May 27, 2002 at 12:20 UTC ( [id://169555]=note: print w/replies, xml ) Need Help??


in reply to <=> vs cmp

You can sort names and numbers with sort, and then have pretty clean code:
my $code = 'untested; no Perl on this machine...'; my @numbers = qw (5 6 7 2 4 5); my @names = qw(Larry Randal Tom Jon); @numbers = sort @numbers; @names = sort @names; foreach(@numbers){ print "$_\n"; } foreach(@names){ print "$_\n"; }
...I admit that I may be missing the point, since sort uses <=> internally, by default...

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (3)
As of 2024-04-24 13:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found