1303
Brace Style (sh.itjust.works)
you are viewing a single comment's thread
view the rest of the comments
[-] solidgrue@lemmy.world 82 points 1 month ago* (last edited 1 month ago)

Looks like Python, but in an editor with a weird TUI scrollbar

[-] subignition@fedia.io 85 points 1 month ago

High chance that it's a Python programmer who is really unhappy about having to work in Java, lol

[-] tan00k@lemmy.world 16 points 1 month ago

Agreed. I saw this and thought it looked beautifully passive aggressive

[-] hemmes@lemmy.world 4 points 1 month ago

Ha! Now I see it - that was very funny, sir!

[-] arudesalad@sh.itjust.works 11 points 1 month ago* (last edited 1 month ago)

Doesn't python need colons after if/else/for/etc. statements?

[-] _stranger_@lemmy.world 5 points 1 month ago

Heh, so in Python it's possible to overload operators in the context of objects. I bet it would be possible to overload tabs to do the same thing as colons inside a context manager, but that's pure speculation.

[-] takeda@lemmy.world 3 points 1 month ago

Perhaps I don't understand you, but I don't think there's a way to override spaces in python in any way. The spaces are handled by the parser.

[-] _stranger_@lemmy.world 3 points 1 month ago* (last edited 1 month ago)

You can define what happens for an object when an operator is applied (like +, /, or -) so that you can obj+obj. I wonder if there's a way to override "tab" such that it acts like a ":", but from inside the language (this is trivial if you edit the language itself like you suggest). Thinking about it more, I'm guessing not since ":" isn't an operator and this doesn't have a corresponding __operator__ function.

[-] palordrolap@kbin.run 3 points 1 month ago

If Python has anything like Perl's source code filters, then anything's up for grabs, but Perl is kind of weird in a way that Python was specifically designed not to be. Or at least Python 1 was. Things may have changed in the intervening couple of decades.

If it's just plain overloading, then whitespace is probably off the table. Spaces, even required spaces, aren't so much syntax as they are structure. You could argue that the curly braces of some other languages are more syntactic than Python's whitespace, because it's actually Python's magic colon and the first unindented line (lack of whitespace!) that serve that specific syntactic purpose.

Examples of Perl's source code filters range from turning a program into binary representation of the syntax tree and still having it be executable, to new syntax, to writing programs entirely in Latin or something that looks almost but not entirely unlike it, anyway.

[-] takeda@lemmy.world 1 points 1 month ago

I see. I would love to be proven wrong, but I don't see a way this would work with tabs/spaces in python.

[-] frezik@midwest.social 1 points 1 month ago

IIRC, Python handles whitespace indentation by having the tokenizer convert them to INDENT/DEDENT tokens. The grammar can then handle them equivalently to a curly brace language.

[-] zaphod@sopuli.xyz 3 points 1 month ago

You can write ~~Fortran~~ Python in any language.

this post was submitted on 28 Jul 2024
1303 points (99.0% liked)

Programmer Humor

19187 readers
1141 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS