#include #include "bstring.h" using namespace std; int main() { BString s1; // build and init an empty string BString s2("Hello World"); cout << "s1 = " << s1 << '\n'; // would print nothing cout << "s2 = " << s2 << '\n'; // should print "Hello World" }