#include "xstring.h"

int main() {

	xstring *p = new xstring("Hello, memory leak!");
	p->print();

	// delete p;
	
	return 0;
}
