this post was submitted on 27 Mar 2024
939 points (98.2% liked)

Programmer Humor

18396 readers
517 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 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] clearleaf@lemmy.world 1 points 3 months ago (2 children)

In godot engine you can put an underscore at the beginning of a variable to tell the linter to calm the hell down about it. But I don't see why it's such a crisis in the first place.

[–] cookie_sabotage@sh.itjust.works 4 points 3 months ago

The underscore is actually used to indicate the variable will not be used.

[–] nickwitha_k@lemmy.sdf.org 2 points 3 months ago

I agree, if talking about the warning. If talking about the unused var, Go won me over there. Unused vars are absolutely a class of software bug that can have implications in security, resource usage, and maintainability.