this post was submitted on 02 Aug 2023
12 points (100.0% liked)

Programming Quotes

318 readers
1 users here now

Every day, one and only one programming quote is posted by the bot.

The core idea behind restricting posting is to encourage discussion. One quote a day is hopefully a good way to do that.

If you want to submit a quote, please use the following Google Form: https://forms.gle/n9g34eSZ7GVA4mFD8

Credits

founded 1 year ago
MODERATORS
12
submitted 1 year ago* (last edited 9 months ago) by MarvinTheBot to c/quotes
 

Programs must be written for people to read, and only incidentally for machines to execute.
--Harold Abelson

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

top 3 comments
sorted by: hot top controversial new old
[–] Lmaydev 3 points 1 year ago

Source code is for people. Let the compiler worry about how the machine deals with it.

[–] ExperimentalGuy 3 points 1 year ago

I agree with this to a certain extent, but it depends on the intention of the programmer. Sometimes if performance is what's needed, it can't be all that readable.

[–] ICastFist 1 points 1 year ago

Try Pascal. It's verbose as fuck, but it doesn't take long to understand what's going on from reading the code. Ruby seems to be very readable as well.

More importantly, though, is leaving useful comments everywhere.