hello people,
i just read this https://linuxfr.org/news/sortie-de-perl-5-30-0 in which
the informations about perl6 are wrong. it points to
https://fr.wikipedia.org/wiki/Rakudo_Perl which is wrong too and i was
thinking that instead of writting wrong stuff on wrong sites, it would
be nice to have
Test has been removed with https://github.com/perl6/roast/commit/1a88ef7e03.
I'm closing this ticket as 'rejected'.
Test has been removed with https://github.com/perl6/roast/commit/1a88ef7e03.
I'm closing this ticket as 'rejected'.
Test has been removed with https://github.com/perl6/roast/commit/1a88ef7e03.
I'm closing this ticket as 'rejected'.
Test has been removed with https://github.com/perl6/roast/commit/1a88ef7e03.
I'm closing this ticket as 'rejected'.
Hi Marc,
the French Wikipedia page you refer to is not really wrong, but rather
terribly outdated and, therefore, no longer correct. I have a Wikipedia
account and can easily fix that page (using, if needed, the updated English
Wikipedia page on the same subject).
Translating the whole Perl 6/Rak
The test in question works now, cmp.
https://github.com/perl6/roast/commit/bba5083af5.
I'm closing this ticket as 'resolved'.
This test works now, cmp. https://github.com/perl6/roast/commit/472bc003f0
I'm closing this ticket as 'resolved'.
This test works with more recent Java version, cmp.
https://github.com/perl6/roast/commit/b5c4ed2345
I'm closing this ticket as 'resolved'.
There have been some efforts to translate perl6intro; but as Laurent says,
we can hardly say the documentation is complete, so diverting resources to
translation is probably not such a good idea.
El mar., 9 jul. 2019 a las 21:53, Laurent Rosenfeld via perl6-users (<
perl6-us...@perl.org>) escribió
These tests have been adjusted with
https://github.com/perl6/roast/commit/551a7ffd7b
I'm closing this ticket as 'resolved'.
hello Laurent,
> the French Wikipedia page you refer to is not really wrong, but rather
> terribly outdated and, therefore, no longer correct. I have a Wikipedia
> account and can easily fix that page (using, if needed, the updated English
> Wikipedia page on the same subject).
The very first sen
hello,
> There have been some efforts to translate perl6intro; but as Laurent says,
> we can hardly say the documentation is complete, so diverting resources to
> translation is probably not such a good idea.
yeah. when laurent spoke about a moving target, i gave a look at the doc
repo and there
I have updated the Wikipedia page linked in Marc's message. @Marc: please
check it and let me know if you see any remaining issues.
@JJMerelo: I have devoted a lot of efforts translating various P6
documentation into French over the last 5 years or so, including
perl6intro, and probably 250 to 300
hello people,
i have a game where every opponent much play every other ones
so i implemented vs to get a list of all the matches from a list
of opponents.
i'm pretty sure that there is a shorter/more beautiful solution than
mine so i really would like to see.
mine is
sub vs (@xs ( $head, *@ta
You might want to take a look at the cross ("X") operator, which takes two
or more lists as arguments and returns a list or all lists that can be
constructed combining the elements of each list (or, in other words, a
Cartesian product of the input lists).
Cheers,
Laurent.
Le mar. 9 juil. 2019 à
A small example as a complement to my previous post:
my @a = 1, 2;
my @b = 3, 4;
my @c = @a X @b; # -> [(1,3), (1,4), (2,3), (2,4)]
Le mar. 9 juil. 2019 à 23:36, Marc Chantreux a écrit :
> hello people,
>
> i have a game where every opponent much play every other ones
> so i implemented
On Tue, Jul 09, 2019 at 11:44:07PM +0200, Laurent Rosenfeld via perl6-users
wrote:
> You might want to take a look at the cross ("X") operator, which takes two
> or more lists as arguments and returns a list or all lists that can be
> constructed combining the elements of each list (or, in other w
hello,
On Tue, Jul 09, 2019 at 11:28:29PM +0200, Laurent Rosenfeld via perl6-users
wrote:
> I have updated the Wikipedia page linked in Marc's message. @Marc: please
> check it and let me know if you see any remaining issues.
reading the fix, i realized i mixed up the errors of the linuxfr page
> On Jul 9, 2019, at 4:36 PM, Marc Chantreux wrote:
> i'm pretty sure that there is a shorter/more beautiful solution than
> mine so i really would like to see.
—snip—
my @players = ;
# Elegant using the "cat-ears" range modifiers in Perl 6:
for 0 ..^ @players.end -> \i {
for i ^..
20 matches
Mail list logo