// The M13_main.cpp file

#include <iostream>
#include "M13_NEWARRAY.h"

int main()
{
    char* source = "Hello!\n";
    char* destination = COPYNEW( source );
    std::cout << destination;
    return 0;
}