cm0002@lemmy.world to Programmer Humor@programming.dev · 18 days agoRecursionkbin.melroy.orgexternal-linkmessage-square16fedilinkarrow-up1394arrow-down17
arrow-up1387arrow-down1external-linkRecursionkbin.melroy.orgcm0002@lemmy.world to Programmer Humor@programming.dev · 18 days agomessage-square16fedilink
minus-squareReptorian@programming.devlinkfedilinkarrow-up2·16 days agoI actually use repeat(iterations,index_name(optionall),);. No need for i++ or ++i for loop in many cases.
minus-squareReptorian@programming.devlinkfedilinkarrow-up2·11 days agoYeah. repeat() is unique to a few language. I think just Scala, and G’MIC has it. I use the second one. It’s more convenient than say for(p=0,p<5,++p,);. Sometimes, repeat(5,); suffice.
I actually use
repeat(iterations,index_name(optionall),);
. No need for i++ or ++i for loop in many cases.😶
Yeah. repeat() is unique to a few language. I think just Scala, and G’MIC has it. I use the second one. It’s more convenient than say
for(p=0,p<5,++p,);
. Sometimes,repeat(5,);
suffice.