Is there a Perl equivalent of the ruby koans project?

perl, ruby

Solution

Here is a repo on GitHub that provides a good number of koans: https://github.com/forcedotcom/PerlKoans

Problem

Is there a Perl equivalent to the ruby-koans project? When I was starting to learn ruby a few months ago I stumbled across ruby-koans and it was a huge help for learning the basics of the language. I now need to poke at some Perl code, and while I've hacked together a few Perl scripts in the past I've never really learned the language, and every time I have to refer back to older scripts I wrote for even simple things. I have a feeling that something like koans would make it much easier for me to learn and retain knowledge of Perl. Does anything like that exist?

Original source