#include "sso_string.h"
#include <string>
#include <iostream>
int main() {
   using namespace std;
   sso_str s = "yo";
   cout << s << endl;
   s = "I like my instructor, he's really sweet and "
       "he barely makes my head hurt on occasion";
   cout << s << endl;
   s = "hey";
   cout << s << endl;
   s = "hey!";
   cout << s << endl;
   s = "heille!";
   cout << s << endl;
   sso_str s2;
   for (int i = 0; i < 26; ++i) {
      s2.push_back(i + 'a');
      s2.push_back(i + 'A');
   }
   cout << s2 << endl;
   wsso_str ws = L"yo";
   wcout << ws << endl;
   ws = L"I like my instructor, he's really sweet and "
        L"he barely makes my head hurt on occasion";
   wcout << ws << endl;
   ws = L"hey";
   wcout << ws << endl;
   ws = L"hey!";
   wcout << ws << endl;
   ws = L"heille!";
   wcout << ws << endl;
   wsso_str ws2;
   for (int i = 0; i < 26; ++i) {
      ws2.push_back(i + L'a');
      ws2.push_back(i + L'A');
   }
   wcout << ws2 << endl;
}