I use Go since it came out, and I alternate. I have some applications that I built and never change, and those are "built" and deployed (in ~/go/bin). I have some applications that for one reason or another are always in evolution (even if slow evolution) and I run them as "go run app.go".
Regarding the original subject, there are times where I just need to quickly try out a standard library call, or do some string manipulation, and I don't feel like writing a full program. For those cases I use "gomacro" (because I remember that I have it installed). In any case, since I started using Claude, I don't remember any case where it tried to run "go run -c" vs. creating a file and running it. On Tue, Jul 7, 2026 at 6:19 PM 'Dan Kegel' via golang-nuts <[email protected]> wrote: > > On Tuesday, July 7, 2026 at 1:47:20 AM UTC-7 Touring Tim wrote: > > I've observed people never bothering to do go build. > > I wonder who these people are and why they would be using GO in the first > place? Send to be a very complicated deployment to install GO on every > deployment > > > Newly hired whippersnappers. They see Go as just another language like > Python, and since they're at a company that uses Go, that's what they use. > - Dan > > -- > You received this message because you are subscribed to the Google Groups > "golang-nuts" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion visit > https://groups.google.com/d/msgid/golang-nuts/4fedd0c9-bfd7-4da4-8f9e-3758bb5dfd6dn%40googlegroups.com. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/golang-nuts/CANKfucbxwb9uScAnkaK-mLd_44VTA5LBNjaw6qPyg37uZb%3DP5A%40mail.gmail.com.
