#include "output.hh" int main() { cout << "Testing output library" << endl; String s = "I am a string"; cout << s.to_substring(4,10) << endl; }