Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Fix failure in event001-eric256
Using `split('')` to get the individual elements of a number or string is
a Perl 5-like way of doing this. Unfortunately, `split` matches the empty
string at the *ends* of the string as well, hence one gets 9 elements from a
7 digit string. The solution is to use `comb`, which is the correct way to
do this in Perl 6.- Loading branch information