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.
if(length([red]$_[/red])==2){
#!/usr/bin/perl
use strict;
use warnings;
sub bisplit {
if ( @_== 2 ){
my @lista = split(/$_[0]/,$_[1]);
print join(":",@lista),"\n";
}
}
bisplit(',',"12,13,14,15,16");