Language Basics Perl

#!/usr/local/bin/perl 
while () { 
    ($first) = split (//, $_); 
    print ("$first\n"); 
}