+
+ cout << "bife::String example:" << endl;
+ cout << "=====================" << endl;
+ string s = "std::string";
+ String a("Un string");
+ String b = "Otro string";
+ //String c = s;
+ cout << "s: '" << s << "' - "
+ << "a: '" << a << "' - "
+ << "b: '" << b << endl;
+ cout << "a.render(): '" << a.render(chit) << "' - "
+ << "b.render(): '" << b.render(chit) << endl;