diff options
| author | Asahel <[email protected]> | 2024-03-03 21:02:36 -0800 |
|---|---|---|
| committer | Asahel <[email protected]> | 2024-03-03 21:02:36 -0800 |
| commit | ac9e6b713cda967b68cb320b79461d466e0a151c (patch) | |
| tree | 036fab4e15fafa771eca7871dc306e9dc2ebd790 /InClassExercise13/main.cpp | |
| parent | add deadline (diff) | |
| download | in-class-exercise-13-asahellt-main.tar.xz in-class-exercise-13-asahellt-main.zip | |
Diffstat (limited to 'InClassExercise13/main.cpp')
| -rw-r--r-- | InClassExercise13/main.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/InClassExercise13/main.cpp b/InClassExercise13/main.cpp new file mode 100644 index 0000000..3a3c87b --- /dev/null +++ b/InClassExercise13/main.cpp @@ -0,0 +1,25 @@ +//Name: Asahel Lopez +//Date: 3/3/24 +//Class: CST 116 +//Assignment: InClassExercise13 + +#include <iostream> +#include <"Contact.h> + + +using std::cout; +using std::endl; +using std::cin; + +int main() { + + + Contact myContact; + + myContact.SetFirstName("Name"); + myContact.SetLastName("LastName"); + + myContact.Print(); + + return 0; +}
\ No newline at end of file |