cm0002@lemmy.world to Programmer Humor@programming.dev · 9 months agoRecursionkbin.melroy.orgimagemessage-square16linkfedilinkarrow-up1397
arrow-up1397imageRecursionkbin.melroy.orgcm0002@lemmy.world to Programmer Humor@programming.dev · 9 months agomessage-square16linkfedilink
minus-squareReptorian@programming.devlinkfedilinkarrow-up2·9 months 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.
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.