Added a program init function

This commit is contained in:
2025-02-16 15:46:54 +01:00
parent 00be603b8f
commit 9f125694be
11 changed files with 78 additions and 38 deletions

View File

@ -98,6 +98,13 @@ func Compile(constants <-chan *core.Constant, files <-chan *fs.File, functions <
}
}
// Check for existence of `init`
init, exists := allFunctions["core.init"]
if !exists {
return result, errors.MissingInitFunction
}
// Check for existence of `main`
main, exists := allFunctions["main.main"]
@ -105,6 +112,7 @@ func Compile(constants <-chan *core.Constant, files <-chan *fs.File, functions <
return result, errors.MissingMainFunction
}
result.Init = init
result.Main = main
result.Functions = allFunctions
result.finalize()