this post was submitted on 24 Jul 2026
446 points (98.3% liked)

Programmer Humor

32452 readers
1709 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 3 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] someacnt@sh.itjust.works 1 points 9 hours ago (1 children)

Pure function, is that a functional programming lingo

[โ€“] ThirdConsul@lemmy.zip 1 points 2 hours ago

Pure function = no side effects, no internal state. If you run a pure function twice with the same input, it will give the same output.

Example of pure function

(a,b) => a+b

Example of inpure function

let c;

(a, b) => {
   c++;
   return a+b;
}