#---------------------------------------------------------------------------------------------------------------------
This project contains source code for a BigInteger ADT that handles arbitrarily large signed integers and is able to perform arithmetic.
#---------------------------------------------------------------------------------------------------------------------
Arithmetic.cpp - Program that parses through string from input file and performs arithmetic, printing to the output file
BigInteger.cpp - Source code for BigInteger ADT
BigInteger.h Header file for BigInteger ADT
BigIntegerTest.cpp - Test cases for BigInteger ADT
List.h - Header file for List ADT
List.cpp - Source code for List ADT
ListTest.cpp - Test cases for List ADT
Makefile - Contains instructions for making executabes/checking for memory errors
README.md - Table of contents for pa6