this post was submitted on 20 Dec 2024
886 points (97.3% liked)
Programmer Humor
32715 readers
590 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Interpreted languages don't have compilers, and one of the steps that compilers do is LINTING. You're literally complaining about not configuring your compiler properly and blaming it on the language.
Not to play the devil's advocate, but with compiled languages you can just install the language, “run” your script and it'll work, if not the language will catch undeclared variables for you, and more. With interpreted languages you need to not only install the language but also third party tools for these fairly Barovia things.
To play devil's advocate to that, why is it better that a language is monolithic vs having its various components be independent let different frameworks mix and match different parts?
I mean, it could just do very basic checking...