Hacker News new | ask | show | jobs
by enneff 37 days ago
For one thing it’s statically typed and has many fewer foot guns than Python, so the llm-produced code is more likely to do what you expect.
2 comments

Go is statically typed but the type system leaves much to be desired.

Go’s benefit are primarily around simplicity, readability, and concurrency.

>Go is statically typed but the type system leaves much to be desired.

Not that much. Looking at Rust or Haskell complexity, I don't really desire it.

Python has much better type system than Go, I don’t know what you’re on. With Trio it has a better async capabilities too.