| ▲ | soupbowl 10 hours ago | |
Are you using 'go run' or compiling these scripts? Just curious about what you are up to as I was considering moving my scripts from bash to go. | ||
| ▲ | transmit101 8 hours ago | parent [-] | |
Not sure if it's obvious, but "go run" is just a thin wrapper around "go build" which compiles your Go code to a temporary location and then runs it in a single step. | ||