say length @many_strings; # 1 #### 17:09 >perl -wE "my @many_strings = ('abc', 'cd', 'e', 'fg', 'hi', 'hello world'); say length @many_strings;" length() used on @many_strings (did you mean "scalar(@many_strings)"?) at -e line 1. 1 17:29 > #### use v6d; my Str @many-strings = |, 'hello world'; @many-strings.raku.put; @many-strings.elems.put; say [+] @many-strings.map: { .chars }; #### 17:09 >raku 2090_SoPW.raku Array[Str].new("abc", "cd", "e", "fg", "hi", "hello world") 6 21 17:09 >