Language Basics Perl

while(){
     @line=split(":");      # or split (":", $_);
     print "$line[0]\n";
}
__DATA__