this post was submitted on 15 Oct 2023
200 points (95.0% liked)

Programmer Humor

32048 readers
1611 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 10 months ago

Length might have mattered in the 80s and 90s when IDEs were crap but we got autocomplete in pretty much all our text editors (even TUI ones like vim).

As for readability there is an argument to be had in specific contexts, but 9 out of 10 times it makes more sense to use a proper word.

Example:

let list = [1, 2, 3];
for i in list {
    println!("{}", i);
}

In this case using item in the place of i would be more fitting.