feat: basic lexer + parser with basic example

This commit is contained in:
2025-11-26 22:26:10 +01:00
parent 1975059b1b
commit 7febbb80d4
10 changed files with 414 additions and 1 deletions

View File

@ -6,4 +6,5 @@ set(SOURCES
src/main.cpp
)
include_directories(pl ${CMAKE_CURRENT_SOURCE_DIR}/include)
add_executable(pl ${SOURCES})