https://use-perl.github.io/user/JonathanWorthington/journal/38700/
This is a report for my Rakudo day last week, which finished up pretty late and thus I didn't get around to writing up and posting a report. Much of the day saw me headachey and not really feeling up to working on big stuff, so I did small stuff instead - mostly bug fixes. Those were:
sub foo(:t($temperature)) { ... }
Expects to be passed a named parameter t, but stores it in the scalar $temperature.I also during the day started moving bits of Rakudo's I/O into the Perl 6 setting. There are some bits of embedded PIR, but very little, since the handle we store is a Parrot I/O object which we are able to call methods on anyway. I'm hopeful that we can have all of I/O moved into the setting and written mostly in Perl 6 in the near future.
Finally, in the evening and once my headache had gone, I worked out a very first cut of importing. It only imported things set to be exported by default, and didn't have handling of multis quite right, but it laid the foundations for further work in the area.
Thanks to Vienna.pm for sponsoring this work.