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

8 lines
133 B
Raku

sub MAIN () {
my $bjort = "a";
while $bjort {
$bjort = prompt "Provide a string to count the chars";
say $bjort.chars;
}
}