257m@lemmy.ml to Programming@programming.dev · 1 year agoWhat are your programming hot takes?message-squaremessage-square807fedilinkarrow-up1344arrow-down115
arrow-up1329arrow-down1message-squareWhat are your programming hot takes?257m@lemmy.ml to Programming@programming.dev · 1 year agomessage-square807fedilink
minus-squareTrustingZebra@lemmy.onelinkfedilinkarrow-up4·1 year agoHow is dynamic typinf faster? Is typing num = 1 instead of int num = 1 really that much faster?
minus-squarecolonial@lemmy.worldlinkfedilinkarrow-up1·1 year agoPlus, most statically typed languages either do type inference by default or let you opt in somehow. Even Java, which is probably the reason everyone hated static typing for the first decade of the century or so, now has var.
How is dynamic typinf faster? Is typing
num = 1
instead ofint num = 1
really that much faster?Plus, most statically typed languages either do type inference by default or let you opt in somehow.
Even Java, which is probably the reason everyone hated static typing for the first decade of the century or so, now has
var
.