CoderSupreme@programming.dev to Programming@programming.dev · edit-226 days agoWhat are your favorite statically typed, compiled, memory safe programming languages?message-squaremessage-square120fedilinkarrow-up1113arrow-down16
arrow-up1107arrow-down1message-squareWhat are your favorite statically typed, compiled, memory safe programming languages?CoderSupreme@programming.dev to Programming@programming.dev · edit-226 days agomessage-square120fedilink
minus-squareAbelianGrape@beehaw.orglinkfedilinkarrow-up1·24 days agoIs Printf.printf not a good generic print function? It’s even variadic!
minus-squarexigoi@lemmy.sdf.orglinkfedilinkEnglisharrow-up1·24 days agoWhen you want to print something, you can’t just Printf.printf x, you have to explicitly give it instructions on how to print a value of that specific type.
Is
Printf.printf
not a good generic print function? It’s even variadic!When you want to print something, you can’t just
Printf.printf x
, you have to explicitly give it instructions on how to print a value of that specific type.