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.
@contents = ( $testing[5] );
# Or even
push @contents, $testing[5];
@contents = split $testing[5];
$_ = 'i am a boy';
@contents = split;
# or
@contents = split /\s+/, $_;
# or even
@contents = split /\s+/;
# but not
@contents = split $_;
my @contents = split /\s+/, $testing[5];