// Testing the ListString class. #include #include "list_string.h" int main() { ListString s( "Howdy" ); cout << "The string is: " << s << endl; cout << "The string's length is: " << s.Length() << endl; return( 0 ); }