aboutsummaryrefslogtreecommitdiff
path: root/challenge-331/ash/raku/ch-1.raku
blob: 1ed82f789636cb1c14df850eafff4aa02dafeaf2 (plain)
1
2
3
4
5
6
7
8
9
10
# Task 1 of the Weekly Challenge 331
# https://theweeklychallenge.org/blog/perl-weekly-challenge-331/#TASK1

say last-word-length('The Weekly Challenge'); # 9
say last-word-length('   Hello   World    '); # 5
say last-word-length('Let\'s begin the fun'); # 3

sub last-word-length($str) {
    $str.words[*-1].chars
}