9 lines
86 B
Text
9 lines
86 B
Text
|
|
#!/usr/bin/env perl
|
||
|
|
|
||
|
|
use utf8;
|
||
|
|
use open qw(:std :utf8);
|
||
|
|
|
||
|
|
while (<>) {
|
||
|
|
print lc $_;
|
||
|
|
}
|