6 lines
79 B
Raku
6 lines
79 B
Raku
sub MAIN (
|
|
$word #= string to count the characters of
|
|
) {
|
|
say $word.chars;
|
|
}
|