Improved code layout
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user