Am 04.05.2014 23:22, schrieb schw...@rt.perl.org:
> # New Ticket Created by Schwenn, Peter
> # Please include the string: [perl #121798]
> # in the subject line of all future correspondence about this issue.
> # https://rt.perl.org/Ticket/Display.html?id=121798 >
>
>
> Dear Perl6'ers,
>
> I am
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: 6499b5c2e6146a8282ae141afa3b7343dc108a40
https://github.com/perl6/specs/commit/6499b5c2e6146a8282ae141afa3b7343dc108a40
Author: Elizabeth Mattijsen
Date: 2014-05-04 (Sun, 04 May 2014)
Changed paths:
# New Ticket Created by Schwenn, Peter
# Please include the string: [perl #121798]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=121798 >
Dear Perl6'ers,
I am using 2014.3 Star’s MSI to build a production translator (updatin
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: dc55e28c9142395e59dcea1815226a6c8dd1d686
https://github.com/perl6/specs/commit/dc55e28c9142395e59dcea1815226a6c8dd1d686
Author: Tim Smith
Date: 2014-05-04 (Sun, 04 May 2014)
Changed paths:
M S05-rege
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: 9878e9ae0d1f5d0a03ac4d84e94128b7e3ff3e3f
https://github.com/perl6/specs/commit/9878e9ae0d1f5d0a03ac4d84e94128b7e3ff3e3f
Author: Elizabeth Mattijsen
Date: 2014-05-04 (Sun, 04 May 2014)
Changed paths:
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: 6f87cb52c3763c7764cf2613d3f97a3e188cfed3
https://github.com/perl6/specs/commit/6f87cb52c3763c7764cf2613d3f97a3e188cfed3
Author: Elizabeth Mattijsen
Date: 2014-05-04 (Sun, 04 May 2014)
Changed paths:
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: 419d76011aa50d0a1cf4ae6a84225a4ea20f864f
https://github.com/perl6/specs/commit/419d76011aa50d0a1cf4ae6a84225a4ea20f864f
Author: Elizabeth Mattijsen
Date: 2014-05-04 (Sun, 04 May 2014)
Changed paths:
Just for the record:
$ cat sizer.c
#include
int main() {
printf(" sizeof(long long) = %2u
__alignof__(long long) = %2u\n", (unsigned) sizeof(long long), (unsigned)
__alignof__(long long));
printf(" sizeof(struct {long long N;}) = %2u __alignof__(struc
Hi,
I'm trying to create a one-element array containing a hash. I eventually
managed to do this from the REPL, but when I create a script containing the
same commands, it doesn't work.
$ cat test.p6
my %h = (y => 1, x => 1);
say [item %h].elems;
say [item %h][0].WHAT;
$ perl6