aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-01 14:17:04 +0100
committerCharles <sircharlesaze@gmail.com>2020-04-15 12:59:58 +0200
commitbe2676e56ae0c72321c60c4848ce720ccf095b26 (patch)
treede96e98403ea8740cea76d9081c932cbbf8edb44 /main.cpp
parent7af930f2242f933f79dfbb4ddc84bfd532069556 (diff)
downloadft_containers-be2676e56ae0c72321c60c4848ce720ccf095b26.tar.gz
ft_containers-be2676e56ae0c72321c60c4848ce720ccf095b26.tar.bz2
ft_containers-be2676e56ae0c72321c60c4848ce720ccf095b26.zip
Remaking List, Removed include/, test/ and Makefile
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
new file mode 100644
index 0000000..18a3ec8
--- /dev/null
+++ b/main.cpp
@@ -0,0 +1,19 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* main.cpp :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/01 10:06:52 by cacharle #+# #+# */
+/* Updated: 2020/04/15 10:56:36 by charles ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#include "List.hpp"
+
+int main()
+{
+ ft::List<int> l;
+ return 0;
+}