summaryrefslogtreecommitdiff
path: root/2p6-2p7-2p8.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-07-29 15:22:18 +0200
committerOskar <[email protected]>2024-07-29 15:22:18 +0200
commit7aac5c6dc29079971a5c964762cdb294782b14d5 (patch)
treef73768958b319ec6f01c32c67f6ee8b3e90f5b75 /2p6-2p7-2p8.cpp
parent5aac3c3f8bcfef0b2aad28d91d87b9ebf1d5e7df (diff)
more
Diffstat (limited to '2p6-2p7-2p8.cpp')
-rw-r--r--2p6-2p7-2p8.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/2p6-2p7-2p8.cpp b/2p6-2p7-2p8.cpp
new file mode 100644
index 0000000..adec444
--- /dev/null
+++ b/2p6-2p7-2p8.cpp
@@ -0,0 +1,23 @@
+#include <iostream>
+#include "sales_item.hpp"
+
+/*
+ *
+ * 2.6, 2.7, 2.8
+ *
+ *
+ */
+
+int main () {
+
+ int month1 = 9;
+ int day1 = 7;
+ //int month2 = 09; // Invalid!
+ //int day2 = 07;
+ std::cout << "month1: " << month1 << " day1: " << day1 << std::endl;
+ std::cout << "Who goes with F\145rgus?\012";
+ std::cout << "2M\n";
+ std::cout << "2\tM\n";
+
+ return 0;
+}