12 lines
154 B
C++
12 lines
154 B
C++
|
#include "mystring.h"
|
||
|
#include <iostream>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
MyString s1("disen");
|
||
|
cout << s1 + ",lucy" << endl;
|
||
|
|
||
|
return 0;
|
||
|
}
|