I know AppEngine does this, but I\'m not coding for it.
I tried using Guard from Ruby world, to listen on changes on .go files, and execut
Guard
.go
I used a tool called entr
To install brew install entr (mac) or, sudo apt-get install entr (linux)
brew install entr
sudo apt-get install entr
To recompile & run on .go file changes, run the following command ...
ls **/*.go | entr go run main.go