10 lines
103 B
Perl
10 lines
103 B
Perl
#!/usr/bin/perl -w
|
|
|
|
$upper = "ALL UPPERCASE";
|
|
|
|
$lower = lc($upper);
|
|
|
|
print "$lower\n";
|
|
|
|
|
|
|