/*************************************************************** Author: Assignment: #3 Filename: tst.cpp Other stuff Purpose: ***************************************************************/ #include #include #include #include #include "Array.h" using namespace std; int main() { Array List; // Add a value to the object int TestTerm=5; List+=TestTerm; // Output the Array. There should be one value printed. cout << List << endl; return(0); }