this post was submitted on 23 Jun 2026
130 points (97.1% liked)

Programmer Humor

31948 readers
397 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
[–] jjj@lemmy.blahaj.zone 1 points 1 hour ago

strong typing

Grrrrrrr. (this term is ambiguous but still very popular for some reason https://en.wikipedia.org/wiki/Type_safety#Strong_and_weak_typing)

There are other well defined ways to describe a type system, such as:

  • Static vs dynamic
  • Implicit vs manifest

e.g.

  • Rust's is mostly static and sometimes optionally implicit
  • Haskell's is static and optionally implicit
  • Python's, Lua's, etc is dynamic and implicit
  • C's is static and manifest