#include <iostream>
#include <vector>
#include "sales_data.hpp"
#include "sales_item.hpp"

/*
 *
 * 3.29
 *
 *
 */

using std::string;
using std::cout;
using std::cin;
using std::cerr;
using std::clog;
using std::endl;
using std::vector;

int main() {

	/*
	  - We need to know the size of an array when we create it
	  - We cannot initialize an array with another array and we cannot assign an array to another
	  - We cannot increase an array's size like we can with vectors.
	  - character arrays need space for the null character

	 */
	return 0;
}