Re: Perl 6 for system-wide use: best practice?

2016-02-23 Thread Paul Cochrane
Hi Tom, On Mon, Feb 22, 2016 at 01:50:50PM -0600, Tom Browder wrote: > What is recommended for installing Perl 6 for system-wide use? if you are running a Debian-based system, you could try installing the Debian Rakudo package from either the "stretch (testing)" or "sid (unstable)" suite. It is

Re: Perl 6 for system-wide use: best practice?

2016-02-23 Thread Tom Browder
On Tue, Feb 23, 2016 at 6:10 AM, Paul Cochrane wrote: > On Mon, Feb 22, 2016 at 01:50:50PM -0600, Tom Browder wrote: >> What is recommended for installing Perl 6 for system-wide use? > > if you are running a Debian-based system, you could try installing the ... I am (I should have said that in my

Re: Need help with Nil values

2016-02-23 Thread Lloyd Fournier
You could just do: method new (Str $value?) { ... } # makes value optional and then not pass anything to .new. On Tue, Feb 23, 2016 at 1:27 PM TS xx wrote: > Thanks Brandon, > > > That was what I was looking for. > > I'm trying it already. > > > Regards, > > Emiliano > > >