/* fstring.cpp Aug 27 2003 Ashok Srinivasan functionalty test of xstring */ #include "xstring.h" using namespace std; using namespace fsu; int main() { String S1, S2("STRING2"); cout << S2 << '\n'; S1 = S2; cout << S1 << '\n'; return 0; }