summaryrefslogtreecommitdiff
path: root/4p2.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-08-15 21:22:06 +0200
committerOskar <[email protected]>2024-08-15 21:22:06 +0200
commitccf67ccfcf7fa892559db8d1475c3217e9692ae2 (patch)
treec2291f2a5290e1f5ddbfd719db55b7aa8f254484 /4p2.cpp
parent38e3c732d86165a84cd872e96e10ca1e811f2bb1 (diff)
removed some headers to maybe speed up compile time maybe it will work i dont know
Diffstat (limited to '4p2.cpp')
-rw-r--r--4p2.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/4p2.cpp b/4p2.cpp
new file mode 100644
index 0000000..ad06d43
--- /dev/null
+++ b/4p2.cpp
@@ -0,0 +1,17 @@
+#include <iostream>
+#include <vector>
+
+/*
+ *
+ * 4.2
+ *
+ *
+ */
+
+int main () {
+
+ //* vec.begin() // Function is called, then dereferenced
+ //* vec.begin() + 1 // Function called, dereference, add
+
+ return 0;
+}