#include "xstring.h"

int main() {

	xstring *pstr = new xstring(6, 'z');
	pstr->print();
	delete pstr;

	return 0;
}
