Initial commit

This commit is contained in:
Abastro 2025-03-23 21:28:03 +09:00
commit 8d3f68ddd2
3 changed files with 16 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
build

8
CMakeLists.txt Normal file
View file

@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.10)
project(mathematical-algorithms)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED true)
add_executable(mathematical-algorithms src/main.cpp)

7
src/main.cpp Normal file
View file

@ -0,0 +1,7 @@
#include <iostream>
using namespace std;
int main() {
cout << "hello world" << endl;
return 0;
}