I have a few files in the main package under one directory:
main.go config.go server.go
When I do: \"go build\" the program builds perfect and runs fine. Whe
You could execute it as:
go run .
so you don't have to include all files manually.
This should work
go run main.go config.go server.go
Go run takes a file or files and it complies those and only those files which explains the missing symbols in the original post.