Remix.run Logo
amiga386 a day ago

And yet... Perl is good with its chained operators acting on lists?

    print join '',
        sort { $a cmp $b }
        grep { !$seen{$_}++ } # = uniq
        <STDIN>;
johnisgood a day ago | parent | next [-]

I do not write such Perl code, but I have in the past.

johnisgood 7 hours ago | parent | prev [-]

Oh and by the way, it does not look that different from that of Rust. :) I have came across a lot of Rust projects.