Fayorg
/
gymnyo-phy-tp8
Archived
1
0
Fork 0
This commit is contained in:
Elie Baier 2024-02-23 13:41:09 +01:00
commit 47196f20c5
3 changed files with 24 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
/DATA
/cmake-build-debug
/.idea
.DS_Store

7
CMakeLists.txt Normal file
View File

@ -0,0 +1,7 @@
cmake_minimum_required(VERSION 3.26)
project(TP8)
set(CMAKE_CXX_STANDARD 14)
add_executable(TP8
main.cpp)

13
main.cpp Normal file
View File

@ -0,0 +1,13 @@
//
// Created by Elie Baier on 23.02.24.
//
#include "iostream"
using namespace std;
int main() {
cout << "Hello World" << endl;
}