537
You can take it from my cold dead pincers
(lemmy.ca)
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.
I mean should const not be the default? I do want to mutate objects sometimes but usually I just need a view of it's state and not write access. It also makes mutable data a lot more obvious if whoever wrote the code your reading wasn't putting const on stuff they should have been. Seems like something all languages with const semantics should have done