571
submitted 11 months ago by demonen@lemmy.ml to c/programmerhumor@lemmy.ml
you are viewing a single comment's thread
view the rest of the comments
[-] palordrolap@kbin.social 4 points 11 months ago

Perl had $[ (yes, just those two characters) to allow setting of the first array index, but it's a fatal error to put anything but 0 into it now.

Of course, since Perl arrays can be negative subscripted from the last element, you can stand on your head and index the array negatively from the wrong end. -1, -2, -3 etc. Use unshift to put things on the beginning (logical "end") of what you're doing rather than the usual push. Presto, a 1-based array (up to sign, anyway).

You may wish to file this under "stupid, but it works".

People with more time / more need for something that looks professional, would probably be better off writing something that uses tie instead. (Or, yes, yes, a different language entirely, hush now.)

[-] TurtleTourParty@midwest.social 1 points 11 months ago

Thanks I hate it.

But still better than mathlab not allowing 0 indexed arrays.

this post was submitted on 23 Oct 2023
571 points (96.4% liked)

Programmer Humor

32054 readers
1603 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS