On Sun, 28 May 2017 13:09:18 -0700, barto...@gmx.de wrote:
> Currently rakudo on JVM does not respect eof when reading from stdin.
>
> bartolin_ r: .say for lines()
> camelia rakudo-moar 094e77: OUTPUT: «»Wann treffen wir drei
> wieder zusamm?« »Um die siebente Stund‘, am Brückendamm.
On Sat, 07 Oct 2017 23:35:26 -0700, c...@zoffix.com wrote:
> Tests were added in https://github.com/perl6/roast/pull/344/files
>
> There are three fudges where it's unknown what the proper behaviour
> should be (overflow or switch to Int?).
>
> Someone Who Knows should review them and unfudge/cor
On Sat, 07 Oct 2017 23:35:26 -0700, c...@zoffix.com wrote:
> Tests were added in https://github.com/perl6/roast/pull/344/files
>
> There are three fudges where it's unknown what the proper behaviour
> should be (overflow or switch to Int?).
>
> Someone Who Knows should review them and unfudge/cor
On Wed, 11 Oct 2017 13:22:50 -0700, alex.jakime...@gmail.com wrote:
> Oh, and if rakudo/issues is opened, then for me all issues raised in this
> ticket will be resolved.
It was opened awhile ago.
…and based on the recent usage, seems GitHub's ticket tracker is preferred by
users, so as far as t
On Wed, 11 Oct 2017 13:22:50 -0700, alex.jakime...@gmail.com wrote:
> Oh, and if rakudo/issues is opened, then for me all issues raised in this
> ticket will be resolved.
It was opened awhile ago.
…and based on the recent usage, seems GitHub's ticket tracker is preferred by
users, so as far as t
I built a bit on Richard's work..
On Sat, Mar 3, 2018 at 2:12 AM, Richard Hainsworth
wrote:
> In addition, I have not figured out how to access CStruct variables yet.
They are mostly like normal classes, but unpacking native C bits isn't always
straightforward.
In this particular case, ToddAndM
I also see another bug:
method flags {
do for AddrInfo-Flags.enums { .key if $!ai_flags +| .value }
}
should be
method flags {
do for AddrInfo-Flags.enums { .key if $!ai_flags +& .value }
}
Though you probably don't even need the flags..
Curt
On Sat, Mar 3, 2018 at 10:58 PM, Richard Hainsworth
wrote:
> I realised from the C documentation that a fixed 14 byte variable was
> required, but I could not find a mention about how to map that into Perl6.
> Suppose it was necessary to create a structure, how would this be done?
There isn't (cu