summaryrefslogtreecommitdiff
path: root/CPP/Basics/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/Basics/main.cpp')
-rw-r--r--CPP/Basics/main.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/CPP/Basics/main.cpp b/CPP/Basics/main.cpp
new file mode 100644
index 0000000..1b6d751
--- /dev/null
+++ b/CPP/Basics/main.cpp
@@ -0,0 +1,25 @@
+#include <iostream>
+#include <string>
+#include "cow.h"
+
+int main(void) {
+ cow *my_cow;
+ my_cow = new cow("Hildy", 7, PET);
+
+ std::cout << my_cow->get_name() << " is a type - " <<
+ (int)my_cow->get_purpose() <<
+ std::endl;
+
+ std::cout << my_cow->get_name() << " is " <<
+ my_cow->get_age() << " years old" <<
+ std::endl;
+
+
+ my_cow->set_age(24);
+ std::cout << my_cow->get_name() << " is NOW " <<
+ my_cow->get_age() << " years old" <<
+ std::endl;
+
+ delete my_cow;
+ return 0;
+}