Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
my $word = 'helloworld';
my $len = length($word);
for (my $i = 0; $i < $len; $i++) {
for (my $j = 1; $j <= $len-$i; $j++) {
my $subword = substr($word, $i, $j);
if (isWord($subword)) {
print "$subword\n";
}
}
}