Re: Placeholder Variable (was: Perl 6 Debugging)

2015-03-15 Thread Tom Browder
On Sun, Mar 15, 2015 at 2:55 PM, Timo Paulssen wrote: ... Thanks, Timo! Subroutine arg handling is an awkward but very exciting improvement for an old but non-expert Perl 5 user. Very briefly, how does one properly translate this to Perl 6: sub foo {my @a = @_; } Best, -Tom

Re: Placeholder Variable (was: Perl 6 Debugging)

2015-03-15 Thread Timo Paulssen
On 03/15/2015 08:48 PM, Tom Browder wrote: > The initial part of the code for the offending method definition is: > > method set_custom_ellipsoid > { > my ($name, $major, $recip) = @_; > $name = uc $name; > $recip = 0 unless defined $recip; > if ($major) { > %ellipsoids{$name} = [ $major, $recip