Improved documentation

This commit is contained in:
2025-01-28 14:04:30 +01:00
parent 9a8cffe2f4
commit 92e4175bbd
4 changed files with 58 additions and 71 deletions

5
src/core/readme.md Normal file
View File

@ -0,0 +1,5 @@
## [Function.go](Function.go)
This is the "heart" of the compiler.
Each function runs [Compile](Compile.go) which organizes the source code into an abstract syntax tree that is then compiled via [CompileAST](CompileAST.go).
You can think of AST nodes as the individual statements in your source code.