logoalt Hacker News

faangguyindiayesterday at 1:12 PM1 replyview on HN

This is why I suggested Go.

Rust doesn't add anything over Go for LLM coding.


Replies

jgiliastoday at 4:45 AM

But it does. A whole class of runtime errors you can trivially produce in safe Go — null pointer dereferences, unchecked type assertions, missed enum cases — are unrepresentable in safe Rust. Also, the type system is a lot more expressive, so more invariants can be encoded in it, leading to more business logic bugs being caught at compile time rather than in production.

show 1 reply