Dynamic typing is insane. You have to keep track of the type of absolutely everything, in your head. It’s like the assembly of type systems, except it makes your program slower instead of faster.
I kinda wanna say… skill issue? But really, dynamic typing is great as long as it fits the problem your solving and you keep your types simple or even just primitive
Nothing like trying to make sense of code you come across and all the function parameters have unhelpful names, are not primitive types, and have no type information whatsoever. Then you get to crawl through the entire thing to make sense of it.
Dynamic typing is insane. You have to keep track of the type of absolutely everything, in your head. It’s like the assembly of type systems, except it makes your program slower instead of faster.
I kinda wanna say… skill issue? But really, dynamic typing is great as long as it fits the problem your solving and you keep your types simple or even just primitive
Nothing like trying to make sense of code you come across and all the function parameters have unhelpful names, are not primitive types, and have no type information whatsoever. Then you get to crawl through the entire thing to make sense of it.
You can do typing through the compiler at build time, or you can do typing with guard statements at run time. You always end up doing typing tho