summaryrefslogtreecommitdiff
path: root/7p9.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-09-18 16:12:27 +0200
committerOskar <[email protected]>2024-09-18 16:12:27 +0200
commita10a6e35975660b89b465faf5baacd6df9c43a34 (patch)
tree7338cdde8a865904118be77dba5d6db949785680 /7p9.cpp
parent46dd78806ebac69c88cb07cecb3afae1835b783a (diff)
more, 7.15 not started yet
Diffstat (limited to '7p9.cpp')
-rw-r--r--7p9.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/7p9.cpp b/7p9.cpp
new file mode 100644
index 0000000..9f5d283
--- /dev/null
+++ b/7p9.cpp
@@ -0,0 +1,19 @@
+#include <iostream>
+#include "person.hpp"
+
+/*
+ *
+ * 7.9
+ *
+ * Done in person.hpp
+ *
+ */
+
+int main () {
+
+ Person person1;
+ read(std::cin, person1);
+ print(std::cout, person1);
+ std::cout << std::endl;
+ return 0;
+}