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

@ -44,6 +44,11 @@ func (f *Function) CompileCall(root *expression.Expression) ([]types.Type, error
name = nameNode.Token.Text(f.File.Bytes)
}
if f.UniqueName == "core.init" && pkg == "main" && name == "main" {
f.Call("main.main")
return nil, nil
}
fn, exists = f.Functions[pkg+"."+name]
if !exists {