257m@lemmy.ml to Programming@programming.dev · 2 years agoWhat are your programming hot takes?message-squaremessage-square7fedilinkarrow-up10arrow-down10
arrow-up10arrow-down1message-squareWhat are your programming hot takes?257m@lemmy.ml to Programming@programming.dev · 2 years agomessage-square7fedilink
minus-squareargv_minus_one@beehaw.orglinkfedilinkarrow-up0·2 years agoDynamic 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.
minus-squareuniqueid198x@lemmy.dbzer0.comlinkfedilinkarrow-up1·2 years agoYou 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
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.
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