begin with typechecker improvement

This commit is contained in:
Robin Bärtschi 2025-01-25 15:51:26 +01:00
parent 9fe5f322a1
commit 62c1e46e17
2 changed files with 1 additions and 1 deletions

0
typechecker/check.go Normal file
View File

View File

@ -36,7 +36,7 @@ func (c *Checker) CheckProgram(program *ast.Program) (*tast.Program, error) {
}
if !c.foundMain {
// TODO: Add support for libraries
// TODO(Robin): Add support for libraries
errs = append(errs, errors.New("no function called 'main' found"))
}