in reply to Re: Sorting, recursion, and tail-call optimizations
in thread Sorting, recursion, and tail-call optimizations
@data = map { join '/', @$_ } sort { my_sort() } @data; # works @data = map { join '/', @$_ } sort my_sort @data; # breaks
Cheers - L~R
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Sorting, recursion, and tail-call optimizations
by kwaping (Priest) on Jan 06, 2006 at 17:06 UTC | |
by GrandFather (Saint) on Jan 06, 2006 at 18:47 UTC |