in reply to RFC: Idiom for named read-write arguments (aliases) instead of using $_[0] etc

use v6; sub swap($a is rw, $b is rw) { ($a, $b) = ($b, $a); }
  • Comment on Re: RFC: Idiom for named read-write arguments (aliases) instead of using $_[0] etc
  • Download Code

Replies are listed 'Best First'.
Re^2: RFC: Idiom for named read-write arguments (aliases) instead of using $_[0] etc
by LanX (Saint) on Sep 02, 2012 at 11:39 UTC
        V6_(Perl)

        Module::Compile

        Module::Compile is like a source-filter, but is safer for real-world code development. It is this module which allows v6 to parse Perl 6 code and directly translate it into Perl 5 code which is then executed.

        Cheers Rolf