Skip to content

Commit 53708c2

Browse files
committed
Init
0 parents  commit 53708c2

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.clang-format

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
BasedOnStyle: LLVM
3+
Cpp11BracedListStyle: false
4+
AllowShortBlocksOnASingleLine: Never
5+
AllowShortFunctionsOnASingleLine: Empty
6+
AllowShortLoopsOnASingleLine: false
7+
BinPackArguments: false
8+
ColumnLimit: 100

CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
cmake_minimum_required(VERSION 3.27)
2+
project(LightStorm)
3+
4+
set(CMAKE_CXX_STANDARD 20)
5+
6+
add_executable(LightStorm main.cpp)

main.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include <iostream>
2+
3+
int main() {
4+
std::cout << "Hello, World!" << std::endl;
5+
return 0;
6+
}

0 commit comments

Comments
 (0)