This commit is contained in:
Zengtudor 2025-05-17 20:17:06 +08:00
parent f883e0bf0c
commit 4ab59266ce
4 changed files with 19 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/build

10
CMakeLists.txt Normal file
View File

@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.10)
project(td CXX)
set(CMAKE_CXX_STANDARD 26
CMAKE_CXX_STANDARD_REQUIRED ON)
file(GLOB_RECURSE SRC_CPP src/*.cpp)
add_executable(${PROJECT_NAME} ${SRC_CPP})

View File

@ -1,3 +1,7 @@
# TudorLang
is a simple programming languange by Tudor
It's a simple programming language by Tudor
# Features
- Parser

3
src/main.cpp Normal file
View File

@ -0,0 +1,3 @@
int main(){
}