Y
Hacker News
new
|
ask
|
show
|
jobs
by
temp51723
1092 days ago
You pick a version of the compiler and stick with it until you're ready to try a newer version?
2 comments
ubercore
1092 days ago
That ignores any other libraries you use which may not make the same choice as you.
link
temp51723
1092 days ago
It doesn't. You stick to the version of those libraries at work with that version of the compiler- like every other language.
link
ObscureScience
1092 days ago
The difference is that most other language
are
backwards compatible to a fault (it's hard to have the stability cake and eat improvements)
link
ubercore
1092 days ago
That's fine in a vacuum, but I feel like you'd very quickly run into the need for a security update, or some external API that changes, etc. You can't ignore all externalities, usually.
link
kzrdude
1092 days ago
Then you risk missing the deprecation warnings and head straight into errors.
link