1
0
Fork 0
forked from fun/fun

Initial parser implementation that runs a simple hello_world.fun script.

This commit is contained in:
Johannes Findeisen 2025-09-13 23:50:01 +02:00
commit 7d587fe11b
5 changed files with 237 additions and 45 deletions

View file

@ -7,8 +7,10 @@ set(CMAKE_C_STANDARD_REQUIRED ON)
# Core VM/library sources
add_library(fun_core
src/bytecode.c
src/parser.c
src/value.c
src/vm.c
src/parser.c
)
target_include_directories(fun_core PUBLIC