gorun
gorun copied to clipboard
gorun is a tool enabling one to put a "bang line" in the source code of a Go program to run it, or to run such a source code file explicitly. It was created in an attempt to make experimenting with Go...
A C/C++ programmer primarily, looking to learn something new, golang! One of the things I first thought is what great potential it had as a statically typed scripting language! And...
ive main.go then import another code that have changed, but, restarting main.go does not seems to reflect the change
Sometimes it's very inconvenient to have one `.go` file per script: either because script is large enough or because we wanna reuse some code located in separate files or because...
`go get` no longer works for recent go versions. Replace these references with something like ```bash go install github.com/erning/gorun@latest ```