documentation translation effort ?

2019-07-09 Thread Marc Chantreux
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

[perl #124672] Roast rakudo skip/todo test:./S16-io/quoting-syntax.t line:8 reason: two terms in a row / unrecognized adverb

2019-07-09 Thread Christian Bartolomaeus via RT
Test has been removed with https://github.com/perl6/roast/commit/1a88ef7e03. I'm closing this ticket as 'rejected'.

[perl #124673] Roast rakudo skip/todo test:./S16-io/quoting-syntax.t line:18 reason: undeclared routine / urecognized adverb

2019-07-09 Thread Christian Bartolomaeus via RT
Test has been removed with https://github.com/perl6/roast/commit/1a88ef7e03. I'm closing this ticket as 'rejected'.

[perl #124674] Roast rakudo skip/todo test:./S16-io/quoting-syntax.t line:32 reason: two terms in a row

2019-07-09 Thread Christian Bartolomaeus via RT
Test has been removed with https://github.com/perl6/roast/commit/1a88ef7e03. I'm closing this ticket as 'rejected'.

[perl #124675] Roast rakudo skip/todo test:./S16-io/quoting-syntax.t line:42 reason: Unsupported use of /s

2019-07-09 Thread Christian Bartolomaeus via RT
Test has been removed with https://github.com/perl6/roast/commit/1a88ef7e03. I'm closing this ticket as 'rejected'.

Re: documentation translation effort ?

2019-07-09 Thread Laurent Rosenfeld via perl6-users
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

[perl #124517] Roast rakudo skip/todo test:./S03-metaops/eager-hyper.t line:35 reason: 'hyper prefix [NYI] entirely, I guess'

2019-07-09 Thread Christian Bartolomaeus via RT
The test in question works now, cmp. https://github.com/perl6/roast/commit/bba5083af5. I'm closing this ticket as 'resolved'.

[perl #124669] Roast rakudo skip/todo test:./S06-other/main-usage.t line:190 reason: '[NYI]'

2019-07-09 Thread Christian Bartolomaeus via RT
This test works now, cmp. https://github.com/perl6/roast/commit/472bc003f0 I'm closing this ticket as 'resolved'.

[perl #124838] [JVM] Roast rakudo skip/todo test:./S29-conversions/ord_and_chr.t line:168 reason: 'high character name lookup'

2019-07-09 Thread Christian Bartolomaeus via RT
This test works with more recent Java version, cmp. https://github.com/perl6/roast/commit/b5c4ed2345 I'm closing this ticket as 'resolved'.

Re: documentation translation effort ?

2019-07-09 Thread JJ Merelo
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ó

[perl #124860] [NYI] [UNI] [JVM] Roast rakudo skip/todo test:./S05-mass/properties-general.t line:163 reason: No 'Lr' property defined

2019-07-09 Thread Christian Bartolomaeus via RT
These tests have been adjusted with https://github.com/perl6/roast/commit/551a7ffd7b I'm closing this ticket as 'resolved'.

Re: documentation translation effort ?

2019-07-09 Thread Marc Chantreux
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

Re: documentation translation effort ?

2019-07-09 Thread Marc Chantreux
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

Re: documentation translation effort ?

2019-07-09 Thread Laurent Rosenfeld via perl6-users
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

[golf?] list of matches

2019-07-09 Thread Marc Chantreux
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

Re: [golf?] list of matches

2019-07-09 Thread Laurent Rosenfeld via perl6-users
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 à

Re: [golf?] list of matches

2019-07-09 Thread Laurent Rosenfeld via perl6-users
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

Re: [golf?] list of matches

2019-07-09 Thread Marc Chantreux
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

Re: documentation translation effort ?

2019-07-09 Thread Marc Chantreux
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

Re: [golf?] list of matches

2019-07-09 Thread Bruce Gray
> 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 ^..