summaryrefslogtreecommitdiff
path: root/2p14.cpp
diff options
context:
space:
mode:
Diffstat (limited to '2p14.cpp')
-rw-r--r--2p14.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/2p14.cpp b/2p14.cpp
new file mode 100644
index 0000000..d3973a6
--- /dev/null
+++ b/2p14.cpp
@@ -0,0 +1,22 @@
+#include <iostream>
+#include "sales_item.hpp"
+
+/*
+ * Yes, it is legal if you aren't using compilerflags like me.
+ * 2.14
+ *
+ *
+ */
+
+int main () {
+ /*
+ int i = 100;
+ int sum = 0;
+ for(int i = 0 ; i != 10 ; i++) {
+ sum += i;
+ }
+
+ std::cout << i << " " << sum << std::endl;
+ */
+ return 0;
+}