Community

We are a bunch of volunteers developing Raku and Raku applications, and try real hard to be nice to each other. Get in touch with us!

Internet Relay Chat (IRC)

Much discussion happens on #raku, our IRC channel. This is the fastest way to get help.

Matrix

There is a Matrix room and also a space.

Zulip

We have a Zulip organization, using the Cloud Standard hosting, thanks to Zulip’s sponsorship.

Stack Overflow

Many questions and answers marked with Raku tag.

Mailing Lists

For more persistent discussions (and for the poor folks who can’t use IRC) we have several mailing lists.

As of 2014, the lists have very low traffic (because most activity is on #raku), but every question sent to it usually gets answered swiftly by at least one person.

You can subscribe to each list by sending an email to list-name-subscribe@perl.org.

perl6-announce

Moderated lists for announcements and news. Fairly low traffic (a few mails per month). [Subscribe] [Archive]

perl6-language

Discussions on the Raku language [Subscribe] [Archive]

perl6-compiler

Discussions on various Raku compilers [Subscribe] [Archive]

perl6-users

User questions about the Raku language and compilers [Subscribe] [Archive]

Getting Involved

Whether you’re an open source veteran or someone that doesn’t know what “open source” means, there are many ways that you can get involved and contribute to the Raku project.

I am new

Learn Raku and Write about your Experience

Use the resources to learn Raku and write about your experience along the way! Let us know when you do write something if you want to share it with the larger Raku community (you should!).

Some writing topics could be programs you’ve written, tricks you’ve learned, cool things about the Raku, etc. Because of your fresh perspective as a learner, writing educational/training material would be a great idea as well.

If anything is Less Than Awesome in your experience, you can chat with us, or open an issue on the User Experience repository.

If you see Less Than Awesome error messages when you run your code, chat with us or open an issue on the compiler’s repository.

Give Feedback on the Docs

Through your experience of learning and using Raku, you will have utitilized the docs. You’re in a good position to help us make these docs more robust. If you notice something missing, or something that could be better clarified, open an issue on the Doc Repo.

I already know the language

Contribute to the Ecosystem

Once you’ve learned the language, you can write modules and share them in the ecosystem. We use zef for packaging. See this guide if you have questions about how to organize modules. If you don’t know what to write, check out the most wanted modules list.

Help us write tests

Help increase test coverage of the official Raku test suite called roast. This is the high bar that all Raku implementations must meet. There’s a lot of ground to cover, so get up to speed with the Test module, if you don’t already know it, and join us!

Hack on the Rakudo Compiler

Rakudo is the most popular Raku compiler right now. Hacking on Rakudo innards is a lot easier than you would think, since most of it is written in Raku. However, since it isn’t completely self-hosting, some parts are written in NQP.

NQP is a subset of Raku that is much smaller and simpler than Raku. Rakudo targets NQP. Then NQP targets various backend VMs like MoarVM, Javascript and Java.

So you can get started right away by writing Raku, and if/when you need to access some very low-level functionality you can learn NQP. You can get up to speed fairly fast with this NQP learning course. So feel free to jump right in!