Improved documentation

This commit is contained in:
Eduard Urbach 2025-01-28 14:04:30 +01:00
parent b8dab29c54
commit 21e544640d
Signed by: eduard
GPG key ID: 49226B848C78F6C8
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.