461
you are viewing a single comment's thread
view the rest of the comments
[-] FunkyStuff@hexbear.net 5 points 3 weeks ago* (last edited 3 weeks ago)

Throwback to when someone shared the OG version of this meme to my uni chat, I replied with "Oh you can simply do

def is_even(n: int) -> boolean:
    if n > 0 return not is_even(n - 1)
    elif n < 0 return not is_even(n + 1)
    else return True

And instead of laughing at the joke the TA in the chat said "When you start getting internships you'll do n % 2" like I was being serious.

this post was submitted on 15 Jul 2025
461 points (94.8% liked)

Programmer Humor

37617 readers
126 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 6 years ago
MODERATORS