[perl #129215] Passing a Hash[...] as a parameter to an imported sub

2017-09-17 Thread Brian S. Julin via RT
On Tue, 06 Sep 2016 13:26:42 -0700, r...@ringlet.net wrote: > Hi, > > So here's the main program: > > #!/usr/bin/perl6 > > use v6.c; > > use lib '.'; > use trap; > > sub woof-local(Hash[Str:D] $data) > { > return $data[0]; > } > > { > my %opts = title => 'Something something

[perl #129215] Passing a Hash[...] as a parameter to an imported sub

2016-09-07 Thread via RT
# New Ticket Created by Peter Pentchev # Please include the string: [perl #129215] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=129215 > Hi, So here's the main program: #!/usr/bin/perl6 use v6.c; use lib '.'; use trap;