this post was submitted on 21 Jun 2023
52 points (98.1% liked)

Programmer Humor

32548 readers
487 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 1 year ago

personally I prefer including the file

prog_constants.h

int program_state; // Keeps track of stuff

in all translation units. That way I can easily keep track of what different parts of the program are doing at any time by modifying a single variable.