this post was submitted on 27 Feb 2025
90 points (98.9% liked)
Programmer Humor
33658 readers
379 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
I wish I could do this with every IDE. Get rid of all the semicolons and most curly braces and replace them with structural whitespace. You could even save the files with the punctuation and compile that to whitespace when editing.
You people are insane. Languages with meaningful whitespace are my personal hell. Don't you value being able to space/tab/newline as you please?
I already do, it strengthens the structure of the code in my mind.
For a long time we've said it's important to separate semantics and presentation (eg html vs css).
I've always wondered why we never followed our own advice when creating new programming languages. Let the IDE present whatever TF you want, and in the background it's simply building an Abstract Syntax Tree and serializing that to a file in whatever serialization format it prefers.
I've dreamed of making my own data-flow language that follows that principle, but I have neither the knowledge of compilers nor the free time to try.