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
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
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