#include "xstring.h"

int main() {

	xstring str = xstring("hello"); // how about xstring str("hello"); ?
	str.print();

	return 0;
}
