This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/usr/bin/perl -w
|
|
use v5.14;
|
|
|
|
while(<>) {
|
|
chomp;
|
|
my @wl = split "_\+";
|
|
my @wl2 = map { ucfirst lc } @wl;
|
|
say join "", @wl2;
|
|
}
|