Comment on When static makes your C code 10 times fasterparentComments−mhh__5yThat is pretty much D (assuming you only want to use the C-like bits) - it's not const by default but const is much easier to use and much more violentAnd arrays are bounds checked by default, no more issues with them (and strings are arrays)
Comments
That is pretty much D (assuming you only want to use the C-like bits) - it's not const by default but const is much easier to use and much more violent
And arrays are bounds checked by default, no more issues with them (and strings are arrays)