Improved code layout

This commit is contained in:
2024-06-21 12:48:01 +02:00
parent 2c6999040d
commit 1058970be3
4 changed files with 133 additions and 110 deletions

View File

@ -19,8 +19,8 @@ func New(files ...string) *Build {
// Run parses the input files and generates an executable file.
func (build *Build) Run() (map[string]*Function, error) {
functions, errors := Scan(build.Files)
return Compile(functions, errors)
functions, errors := scan(build.Files)
return compile(functions, errors)
}
// Executable returns the path to the executable.