Go Away Python

17 points | by baalimago 2 hours ago

3 comments

  • age123456gpg 2 minutes ago

    Official stance about supporting interpreter mode for the reference https://github.com/golang/go/issues/24118

  • llmslave2 8 minutes ago

    I love it. I'm using Go to handle building full stack javascript apps, which actually works great since esbuild can be used directly inside a Go program. The issue is that it's a dependency, so I settled for having a go mod file and running it directly with Go. If somehow these dependencies could be resolved without an explicit module configured (say, it was inline in the go file itself) it would be perfect. Alas, it will probably never happen.

    That being said...use Go for scripting. It's fantastic. If you don't need any third party libraries this approach seems really clean.

  • throw-12-16 23 minutes ago

    I've been meaning to port some dotfiles utils over to go, I think I'll give this a shot.