this post was submitted on 21 Apr 2024
896 points (100.0% liked)

Programmer Humor

22322 readers
3419 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 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 4 points 11 months ago (1 children)

For a second there I thought you might be serious

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

I do actually use variables before I declare them most of the time. IDEs make it so easy to then generate the declaration with the correct type.

[–] [email protected] 1 points 11 months ago

That’s true, in fact I’ve started doing that myself. Same with methods, instead of going and writing the method and then coming back to use it, I’ll write the invocation first.