BEGIN { skip 'requires 5.25.6' if $^V lt v5.25.6 } # omit
# Starting with 5.25.6, '' and ' ' are represented as // and / /
our @s = split(//, $a);
my @strings = split(/ /, $a)
