this post was submitted on 07 Jan 2024
883 points (94.3% liked)

Programmer Humor

19488 readers
288 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 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 10 months ago

whether or not a compiler can understand a type at compile time

In many / most(?) compiled languages that's because the type is specified at compile time. With interpreted languages that's often not the case, and in that case determining the type can be extremely hard.