3
public string nicer_pkg_name (string pkg_name) {
4
return capitalize_str(pkg_name.replace("-", " "));
7
public string capitalize_str (string str) {
8
StringBuilder build = new StringBuilder();
9
build.append_unichar(str[0].toupper());
10
for (int x = 1; x < str.length; x++) {
11
build.append_unichar(str[x]);
b'\\ No newline at end of file'