8 lines
133 B
Raku
8 lines
133 B
Raku
|
sub MAIN () {
|
||
|
my $bjort = "a";
|
||
|
while $bjort {
|
||
|
$bjort = prompt "Provide a string to count the chars";
|
||
|
say $bjort.chars;
|
||
|
}
|
||
|
}
|