this post was submitted on 31 Jan 2024
1515 points (97.3% liked)

linuxmemes

20770 readers
733 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

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

Basically if you need the same logic in two places instead of copying it to the second place you make it into a function and use that function in both places.

That way if you need that logic to change you only need to make that edit once regardless of whether you use it one time or one thousand times.