#include <iostream>

int main ()
{
    std::string foo( "test" );
    std::cout << foo << std::endl;
    
    foo[ 0 ] = 'too long for a char';
    std::cout << foo << std::endl;

    return 0;
}