Hei,
Vadim Belman said:
>
> First, such conflict-based forks cause harm to project reputation.
>
> Second, it confuses potential supporters and this could reduce project
> funding.
>
> Third, developers would get separated between projects. Depending on how
> many would leave the original produc
Piper H said:
> Has Larry Wall joined the development team of raku?
He's been part of it since the very beginning. He's also on this list,
chipping in now and then (last time was in June this year).
- Salve
--
#!/usr/bin/env perl
sub AUTOLOAD{$AUTOLOAD=~/.*::(\d+)/;seek(DATA,$1,0);print# Salv
Patrick R. Michaud said:
On Tue, May 23, 2017 at 09:01:54PM +0300, Gabor Szabo wrote:
given an object $o and the name of a method in $method = "run"
how can I invoke the $o.run() ?
Something like $o.call($method)
At one point it was done as $o."$method"() .
my $method = 'say'; 123."$meth
Hi,
Fernando Santagata said:
I my case, what I was trying to do is getting some strings in order to pass
them over to a C function via NativeCall.
Being sure the passed value was actually a string is not a whim, but would
be useful in avoiding a segmentation fault. Yet I figure that as long as