this post was submitted on 19 May 2024
100 points (97.2% liked)

Programming

16182 readers
62 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
 

In this letter, Dijkstra talks about readability and maintainability in a time where those topics were rarely talked about (1968). This letter was one of the main causes why modern programmers don't have to trouble themselves with goto statements. Older languages like Java and C# still have a (discouraged) goto statement, because they (mindlessly) copied it from C, which (mindlessly) copied it from Assembly, but more modern languages like Swift and Kotlin don't even have a goto statement anymore.

top 48 comments
sorted by: hot top controversial new old
[–] [email protected] 20 points 1 month ago (2 children)

TIL that C# and Java have a goto statement.

[–] [email protected] 18 points 1 month ago (3 children)
[–] [email protected] 8 points 1 month ago (1 children)

Please don't link to medium articles. That page is terrible to visit.

[–] [email protected] 2 points 1 month ago (1 children)

Looks fine on Firefox on Android with uBlock Origin. 🤷‍♂️

[–] [email protected] 1 points 1 month ago (1 children)

I'm running exactly the same and it doesn't look fine on my end.

[–] [email protected] 1 points 1 month ago (1 children)

Huh. Maybe it's NoScript, then.

[–] [email protected] 2 points 1 month ago

Could be. I'm getting forced to make an account and such. That's why I hate medium.

[–] airbreather 4 points 1 month ago (2 children)

To be fair, await is a bit more like comefrom, and it's been around for a few releases now.

[–] [email protected] 2 points 1 month ago

async/await was introduced in version 4.5, released 2012. More than a few releases at this point!

[–] [email protected] 1 points 1 month ago* (last edited 1 month ago)

How is await like comefrom, any more than threading is like comefrom? The variable context is preserved and you have no control over what is executed before the await returns.

[–] [email protected] 2 points 1 month ago (1 children)

What...? That is a terrible idea.

[–] [email protected] 1 points 1 month ago

It's scary as fuck, yeah, but, to be fair, it's only intended to be used by code generators, and it's quite awkward to use outside of them.

[–] [email protected] 4 points 1 month ago* (last edited 1 month ago) (1 children)

Java doesn't. Well, it's a reserved keyword but it's not implemented.

[–] Carighan 1 points 1 month ago (1 children)

Yeah but we got labels with continue and break, so we can pseudo goto.

[–] [email protected] 1 points 1 month ago

Following that logic if, else and while are also "pseudo goto" statements.

There's nothing wrong with conditional jumps - we couldn't program without them. The problem with goto specifically is that you can goto "anywhere".

[–] [email protected] 17 points 1 month ago (1 children)

switch statements are three gotos in a trenchcoat.

[–] [email protected] 7 points 1 month ago (1 children)

Anything is a goto in disguise when you think about it

[–] [email protected] 5 points 1 month ago* (last edited 1 month ago) (1 children)

In most CPU instruction sets, the only conditional instruction is branch (aka goto).

[–] [email protected] 0 points 1 month ago

And after each instruction, the CPU go to the next instruction

[–] [email protected] 12 points 1 month ago* (last edited 1 month ago) (2 children)

For such an influential letter, I don't find his arguement all that compelling. I agree that not using go to will often lead to better structured (and more maintainable) programs, but I don't find his metric of "indexable process progress" to satisfyingly explain why that is.

Perhaps it's because at that time people would be running the programs in their heads before submitting them for processing, so they tended to use more of a computer scientist mindset - whereas now we're more likely to use test cases to convince ourselves that code is correct.

[–] [email protected] 7 points 1 month ago* (last edited 1 month ago) (1 children)

Perhaps it’s because at that time people would be running the programs in their heads before submitting them for processing, so they tended to use more of a computer scientist mindset - whereas now we’re more likely to use test cases to convince ourselves that code is correct.

This is 1968. You didn't have an IDE or debugger. Your editor was likely pretty terrible too (if you had one). You may have still been using punch cards. It's possible the only output you got from your program was printed on green-bar paper.

"Back in the day" it wasn't uncommon to sit with a printout of your code and manually walk though it keeping state with a pencil. Being able to keep track of things in your head was very important.

GOTO existed in part for performance purposes. When your CPU clock is measured in megahertz, your RAM is measured in kilobytes and your compilers don't do function in-lining it's quicker and cheaper to just move the program pointer than it is to push a bunch of variables on a stack and jump to another location, then pop things off the stack when you're done (especially if you're calling your function inside a loop). Even when I was programming back in the '80s there was a sense that "function calls can be expensive". It wasn't uncommon then to manually un-roll loops or in-line code. Compilers are much more sophisticated today and CPUs are so much faster that 99% of the time you don't need to think about now.

Oddly enough the arguments against GOTO are less important today as we have much better development tools available to us. Though I certainly won't recommend it over better flow-control structures.

[–] [email protected] 3 points 1 month ago (1 children)

When your CPU clock is measured in megahertz, your RAM is measured in kilobytes

Ah yes, the good ol' days when developers programmed for efficiency.

[–] [email protected] 3 points 1 month ago (1 children)

Mostly because they had to. Writing efficient code and easy-to-read code are often at odds with each other. I like being able to create lots of functions that can be called from a loop without needing to worry too much about function call overhead. I can prioritize readability for some time before I ever need to worry about performance.

[–] [email protected] 1 points 1 month ago (2 children)

I get that but it seems as though no one cares at all about efficiency these days.

[–] [email protected] 2 points 1 month ago

People have been complaining about this exact thing forever. Even back when "people cared about efficiency".

[–] [email protected] 2 points 1 month ago

Does the catchphrase "blazing fast" ring any bells? Some people care.

(Arguably that's just the pendulum swinging the other way; Ruby, Python, and Java ruled the software world for a while, and I think that's a large part of why the Go and Rust communities make such a big deal about speed.)

[–] [email protected] 7 points 1 month ago (1 children)

I think it's convoluted way to describe it. Very technically-practical. I agree it's probably because of historical context.

The argument I read out of it is that using goto breaks you being able to read and follow the code logic/run-logic. Which I agree with.

Functions are similar jumps, but with the inclusion of a call stack, you can traverse and follow them.

I think we could add a goto stack / include goto jumps in the call stack though? It's not named though, so the stack is an index you only understand when you look at the code lines and match goto targets.

I disagree with unit tests replacing readability. Being able to read and follow code is central to maintainability, to readability and debug-ability. Those are still central to development and maintenance even if you make use of unit tests.

[–] [email protected] 4 points 1 month ago* (last edited 1 month ago)

I wasn't saying that unit tests replaces readability, I was saying that back in the 60s they'd reason and debug using their brains (and maybe pen and paper), with more use of things like formal proofs for correctness. Now that we write more complicated programs in more powerful environments, it's rare to do this (we'd use breakpoints, unit tests, fuzzing, etc).

[–] [email protected] 12 points 1 month ago (1 children)

Languages don't have goto because they mindlessly copied it.

[–] [email protected] -1 points 1 month ago (1 children)

True it wasn't mindless - just idiotic

[–] [email protected] 6 points 1 month ago* (last edited 1 month ago) (1 children)

It's not idiotic. You can do a lot of performance optimizations with GOTO so providing it as a "use it if you know what you're doing" option is fine. And some things are easier to read with GOTO.

FWIW the Linux source code is full of GOTO statements. Nearly 200,000 of them in fact.

[–] [email protected] 2 points 1 month ago (1 children)

There's a solid reason for goto in C.

Bringing goto into Java was (and is) idiotic.

If you're trying to squeeze every ounce of performance out of your code then you'll need those optimizations.

But any higher level language than C the entire point is to write easily maintainable and useful code that any idiot can go, read and update. A goto is antithetical to readability.

[–] ggppjj 1 points 1 month ago

It can be, sure. But when used in a limited manner where it makes sense it can be the more readable option. I've used it in a try/catch to retry the operation after changing a variable. One label ("reconnect"), one goto, totally easy to understand on a surface level.

[–] [email protected] 10 points 1 month ago (1 children)

goto does have some uses, such as single exit point, but should be used sparingly.

[–] [email protected] 2 points 1 month ago (1 children)

Single exit point is an assembly rule that was mindlessly ported to C/C++. It doesn't make sense in a structured language.

[–] [email protected] 3 points 1 month ago (1 children)

Maybe for your use-cases, for mine i find it quite useful.

[–] Acters 1 points 1 month ago (1 children)

I'll be very interested to hear more, do you have a blog?

[–] [email protected] 1 points 1 month ago

A common case is a function that uses resources like opening files, sockets, whatever. If there's an error you want to ensure a clean exit, so at different parts of said function you goto the end where you check if said resources are being used and release them before exiting.

Cleaner than constantly checking at every error.

[–] [email protected] 7 points 1 month ago* (last edited 1 month ago)

Their main argumentation (from page 1) summarized:

You know the state and progress of a program from the line you are on. A goto breaks that.

You can index the progress of a program through static line indexes and a dynamic loop index and function call stack. A goto breaks that. Including a "statements/lines since beginning of execution" is infeasible for understanding.

[–] [email protected] 6 points 1 month ago* (last edited 1 month ago) (1 children)

Go has goto too. They surely did not "mindlessly copy" it.

The standard library makes use of it. So they most definitely see a warranted use-case for it.

OP argument against using it in high level languages may still hold though. Go may have introduced it as a systems language which allows control over alternative implementations.

[–] [email protected] 2 points 1 month ago

The article does say that there are good cases to use goto, but they are rare and most programmers won't ever encounter such situations. I believe the jist is that it can do nore harm than good.

[–] [email protected] 4 points 1 month ago (2 children)

Java does not support goto.

[–] [email protected] 3 points 1 month ago

Well it has labeled breaks but that's the closest it gets to it.

[–] [email protected] 3 points 1 month ago (3 children)

And yet it's still easy to write spaghetti code in Java. Just abuse inheritance. Where is this function implemented? No one knows but the compiler!

[–] [email protected] 4 points 1 month ago

You mean SpaghettiFactory()

[–] [email protected] 3 points 1 month ago

And don't forget to use miracle sort for any sorting needs you have. Why do the work yourself when you can just hope it gets solved for you?!

[–] [email protected] 0 points 1 month ago

That doesn't make it spaghetti code though. In well-written OOP code you shouldn't care where a function is implemented. The problem is a much too high level of abstraction. If your high level code is so abstract that it is only running tasks and handling messages there's no way to write it in a way that prevents mistakes because you couldn't possibly know what the actual implementations do.

[–] [email protected] 3 points 1 month ago* (last edited 1 month ago)

PDF magic… It has grainy text. But the selectable text and displayed text have a 1-character offset.

I assume they display the original scan so it definitely does not contain errors, while still providing the image-parsed text for searchability, indexability, and select-+copyability?

screenshot of text + backing text offset

Unfortunately, the grainy text is hard[er] to read.