465
Peak code reuse (eviltoast.org)
you are viewing a single comment's thread
view the rest of the comments
[-] FiskFisk33@startrek.website 5 points 3 weeks ago* (last edited 3 weeks ago)
isEven(0) ->
    true;
isEven(Num) ->
    isOdd(Num-1).
isOdd(0) ->
    false;
isOdd(Num) ->
    isEven(Num-1).
this post was submitted on 12 Sep 2025
465 points (100.0% liked)

Programmer Humor

26772 readers
931 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 2 years ago
MODERATORS