this post was submitted on 08 Dec 2023
628 points (96.3% liked)

Programmer Humor

41326 readers
845 users here now

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

Rules:

founded 6 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] AdamBomb 1 points 2 years ago

Functional languages model this with a value that is not null but must be handled at runtime before attempting to actually access the value, providing compiler checked prevention against unguarded null deferences. See Haskell’s Maybe type or F#’s Option type.