learning-perl6/ch4/ex4-6.raku

6 lines
120 B
Raku
Raw Permalink Normal View History

2023-11-23 16:26:32 +00:00
sub MAIN (
$my-string #= String to count characters/display
) {
say "$my-string has {$my-string.chars} characters";
}