From 47196f20c54f141dba85708887ddaea9506fae67 Mon Sep 17 00:00:00 2001 From: Fayorg Date: Fri, 23 Feb 2024 13:41:09 +0100 Subject: [PATCH] initial --- .gitignore | 4 ++++ CMakeLists.txt | 7 +++++++ main.cpp | 13 +++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 .gitignore create mode 100644 CMakeLists.txt create mode 100644 main.cpp diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..be09070 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/DATA +/cmake-build-debug +/.idea +.DS_Store \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..0bae021 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.26) +project(TP8) + +set(CMAKE_CXX_STANDARD 14) + +add_executable(TP8 + main.cpp) diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..6f21eab --- /dev/null +++ b/main.cpp @@ -0,0 +1,13 @@ +// +// Created by Elie Baier on 23.02.24. +// + +#include "iostream" + +using namespace std; + +int main() { + + cout << "Hello World" << endl; + +} \ No newline at end of file