this post was submitted on 26 Sep 2023
691 points (92.0% liked)

Programmer Humor

32136 readers
645 users here now

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

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] SorteKanin@feddit.dk 4 points 1 year ago* (last edited 1 year ago)

Type signatures help you to know what a function takes and returns. With dynamic typing, I have to read the entire code of the function just to know this (sometimes even this doesn't tell me what will actually be returned due to duck typing).

More importantly, type signatures help the compiler verify the types.

Both of these get more and more important as the code size increases. I'd suggest you widen your horizon about static typing.