538
you are viewing a single comment's thread
view the rest of the comments
[-] kubica@kbin.social 98 points 8 months ago

Put it in an if-else and it executes both blocks.

[-] steersman2484@sh.itjust.works 34 points 8 months ago

But only if you don't look

[-] bananaw@sh.itjust.works 34 points 8 months ago* (last edited 8 months ago)
[-] Klear@lemmy.world 3 points 8 months ago
[-] theneverfox@pawb.social 14 points 8 months ago

Fun fact I learned today - you know how when there's a compound conditional, the interpreter stops once the result is known? (Eg, if the left side of an and is false, it's false so it doesn't bother checking the second condition)

Apparently, visual basic doesn't do this thing every other language I know of does... It might be a debug only thing for the convenience of the depreciated ide I'm forced to use, but I did a null check && called a function on it if it's not null, and it blew up

I pride myself on my ability to change to a new programming language and make progress on day one, but vb is truly the most disgusting POS language I've ever seen. From syntax to jarring inconsistencies in language design, it's just gross

[-] noli@programming.dev 2 points 8 months ago
  1. That's behaviour that's just part of language design. If you rely on it you should probably check how the language you're using handles it.

  2. relying on that behaviour sounds a lot like "clever" (read unnecessarily unreadable) code

[-] theneverfox@pawb.social 1 points 8 months ago

Are you serious? It's one of the most basic and common if statements that exist.

If( foo != null && foo.isBar() )

That's what we're talking about. Looking before you leap.

I take issue with the whole "too clever" argument fundamentally (for a number of reasons), but this isn't some fancy quality of life feature. This is as simple as it gets

[-] noli@programming.dev 1 points 8 months ago
[-] theneverfox@pawb.social 1 points 8 months ago

Scroll on down to the first common example there champ.

If you really think that's being "too clever" I don't know what to tell you... A big reason I think that argument is bullshit is because writing simple code isn't a goal (what does that even mean?) - readability is a big one, and breaking up every part of every conditional would just lead to unreadable spaghetti

Also, take a look at the languages being discussed. This is a long settled question - every language I've ever used has this.

Including VB, I found out it uses AndAlso...so gross

[-] noli@programming.dev 1 points 8 months ago* (last edited 8 months ago)
  1. several languages that are still in use have eager evaluation.

  2. I'm a dumb programmer. The more I need to keep implicit behaviour in mind, the higher the probability I'm writing bugs. Short circuit evaluation is an optimization technique IMO and shouldn't be relied upon for control flow.

  3. The aggressive tone you're using is completely unnecessary and immature, so I'll refrain from responding any further. Have a nice day.

[-] theneverfox@pawb.social 1 points 8 months ago

You're the one who started this by criticizing my knowledge and my coding practices, in response to me sharing one very specific example of why I believe VB is a bad language

I held off because I thought you must've misread it and we'd laugh and maybe talk about language design... But no, you confirmed you just came at me with a bad take extremely dismissively

If you want respect, try showing it.

[-] madkarlsson@beehaw.org 9 points 8 months ago

Here is one of the programmers who is quantum ready as well

[-] datelmd5sum@lemmy.world 2 points 8 months ago

doesn't the CPU already do this?

[-] Omega_Haxors@lemmy.ml 0 points 8 months ago* (last edited 8 months ago)

Screw else statements, people who use if-return have 180% more readable code.

[-] SpeakinTelnet@programming.dev 5 points 8 months ago

Because everyone knows a function stops at the if-else. Nothing ever happens afterward.

[-] Octopus1348@lemy.lol 3 points 8 months ago

It's much more readable when you use else depending on the checks. You can still use return in an else block.

def Allowed()

  if name == "Octopus1348": return True

  elif name == "Bobert": return True

  else:
        return "You are not allowed to use this script."

print(Allowed())

`

this post was submitted on 16 Jan 2024
538 points (98.7% liked)

Programmer Humor

19187 readers
1341 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