5 lines
105 B
Perl
5 lines
105 B
Perl
while (<>) {
|
|
print "Initial lowercase: " . lcfirst;
|
|
print "Initial uppercase: " . ucfirst;
|
|
}
|