update
This commit is contained in:
parent
f883e0bf0c
commit
4ab59266ce
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/build
|
10
CMakeLists.txt
Normal file
10
CMakeLists.txt
Normal 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})
|
@ -1,3 +1,7 @@
|
|||||||
# TudorLang
|
# TudorLang
|
||||||
|
|
||||||
is a simple programming languange by Tudor
|
It's a simple programming language by Tudor
|
||||||
|
|
||||||
|
# Features
|
||||||
|
|
||||||
|
- Parser
|
3
src/main.cpp
Normal file
3
src/main.cpp
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
int main(){
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user