diff options
Diffstat (limited to 'Project1/program.cpp')
| -rw-r--r-- | Project1/program.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Project1/program.cpp b/Project1/program.cpp new file mode 100644 index 0000000..e893d7f --- /dev/null +++ b/Project1/program.cpp @@ -0,0 +1,20 @@ +// name: Connor McDowell +// date: 2/10/2024 +// class: CST116 +// reason: homework number 5 + +#include "Contacts.h" +#include <iostream> + +using std::cin; +using std::cout; +using std::endl; + +int main() +{ + addNew(); + + + + return 0; +}
\ No newline at end of file |