add: initial commit

This commit is contained in:
Lam Haoyin 2021-12-25 11:54:00 +08:00
commit 0540982c10
No known key found for this signature in database
GPG Key ID: 8C089CB1A2B7544F
2 changed files with 12 additions and 0 deletions

6
CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.21)
project(LeetCodeDaily)
set(CMAKE_CXX_STANDARD 23)
add_executable(LeetCodeDaily main.cpp)

6
main.cpp Normal file
View File

@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "See source files in sub-directories!" << std::endl;
return 0;
}