Added main prefix

This commit is contained in:
2024-07-30 20:02:55 +02:00
parent 323952f4bc
commit 0c1b57b4e4
9 changed files with 34 additions and 20 deletions

View File

@ -47,7 +47,7 @@ func Compile(functions <-chan *core.Function, errs <-chan error) (Result, error)
}
// Check for existence of `main`
main, exists := all["main"]
main, exists := all["main.main"]
if !exists {
return result, errors.MissingMainFunction