http://www.perlmonks.org?node_id=1035535


in reply to Re^3: Perl 6 implementation of the following Perl 5 code
in thread Perl 6 implementation of the following Perl 5 code

I can confirm this works and Infact its actually much cleaner for people who likes one-liner

say reverse .words for map *[1], sort map {[.words[*-1],$_]}, grep /ICSE/, lines;

Hmm ... now I'm wondering why I couldn't get the sort to work without the parenthesis previously.