learning-perl6/ch4/ex4-1.raku
2023-11-21 07:44:50 -08:00

6 lines
79 B
Raku

sub MAIN (
$word #= string to count the characters of
) {
say $word.chars;
}