Hacker News new | ask | show | jobs
by rednafi 474 days ago
It’s much better with uv, but nothing beats the ergonomics of running go mod tidy && go run script.go.

I wish Python had a native way to build self-contained executables like Go. The binary would be larger since it’s a dynamically interpreted language, but as long as it’s self-contained, I wouldn’t mind.

1 comments

I mean... at first blush it seems like `./scriptname` which is what the `uv` shebang provides beats having to remember two commands and && them together.