in reply to Re: Sort an array using the Schwartzian transform
in thread Sort an array using the Schwartzian transform
but actually...DB<1> x sort { $a <=> $b } (1_0, 1_00, 2_0 ) 0 10 1 20 2 100
DB<2> x sort { $a <=> $b } qw(1_0 1_00 2_0) 0 '1_0' 1 '1_00' 2 '2_0'
|
|---|