aboutsummaryrefslogtreecommitdiff
path: root/cpp01/ex01
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-01-12 20:20:12 +0100
committerCharles <sircharlesaze@gmail.com>2020-01-12 20:20:12 +0100
commit7d6a4c877de8048ec5fbea4a563b3d09c8976105 (patch)
treea62206e21b3b678d0da6350978e2f6db7cc31fbe /cpp01/ex01
parent7080f89bb2800917bfd9a560046a1ab7505f819e (diff)
downloadpiscine_cpp-7d6a4c877de8048ec5fbea4a563b3d09c8976105.tar.gz
piscine_cpp-7d6a4c877de8048ec5fbea4a563b3d09c8976105.tar.bz2
piscine_cpp-7d6a4c877de8048ec5fbea4a563b3d09c8976105.zip
cpp01 00 -> 04
Diffstat (limited to 'cpp01/ex01')
-rw-r--r--cpp01/ex01/ex01.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/cpp01/ex01/ex01.cpp b/cpp01/ex01/ex01.cpp
new file mode 100644
index 0000000..c08e1d2
--- /dev/null
+++ b/cpp01/ex01/ex01.cpp
@@ -0,0 +1,8 @@
+#include <iostream>
+
+void memoryLeak()
+{
+ std::string* panthere = new std::string("String panthere");
+ std::cout << *panthere << std::endl;
+ delete panthere;
+}