My Exploratory journey on learning and mastering Go programming.
- Only one file say
main.go
can havefunc main
declared. - write go routines as necessary for your project and plan to call them from
main
function ofmain.go
. - Do
go run *.go
to run the whole project from terminal or build the project usinggo build
and run the binary.