#include "PrismPrinter.h" #include std::string capitalize(std::string string) { string[0] = std::toupper(string[0]); return string; }