336
Lua rule (lemmy.blahaj.zone)
submitted 1 year ago by Finalsolo963 to c/196

A ruler with the logo for the Lua Programming language

top 16 comments
sorted by: hot top controversial new old
[-] yetAnotherUser@lemmy.ca 86 points 1 year ago

You forgot putting in the alt text that the ruler's scale starts at 1 instead of starting at 0.

[-] Finalsolo963 9 points 1 year ago

I honestly didn't notice.

[-] lugal@lemmy.ml 16 points 1 year ago

Why does it go to 19 and not 20? You're saving on the wrong end!

[-] Kerb@discuss.tchncs.de 58 points 1 year ago* (last edited 1 year ago)

thats probably taking the piss with how lua handles array indexing.

in most programming languages,
the first element of an array is element 0,
in lua arrays start with element 1.

imo it kinda makes sense,
but it causes confusion because it goes against established conventions

[-] Amaltheamannen@lemmy.ml 20 points 1 year ago

The reason for the convention is that it used to be just a pointer (adress) to consecutive elements in memory. A[x] is then literally translated to the adress of A + sizeof(x)*x. Meaning that the first element is at A[0].

[-] SkyeStarfall 9 points 1 year ago

I mean, it's still the case under the hood, and languages like C do work that way. Sure, it's abstracted away in most programming languages these days, but if you ever need to do direct memory management, it's very much still how it works.

[-] AdrianTheFrog@lemmy.world 4 points 1 year ago

Scratch and Mathematica also have arrays start at one.

[-] lugal@lemmy.ml 3 points 1 year ago

I never worked with lua but I get it now. Thanks!

[-] STUPIDVIPGUY@lemmy.world 12 points 1 year ago

this is the ruler for guys who say they have a 12" dick

[-] MareOfNights@discuss.tchncs.de 9 points 1 year ago

BRAZIL MENTIONED!

[-] ezchili@iusearchlinux.fyi 4 points 1 year ago* (last edited 1 year ago)

There's a syntax for indexing starting from 0, it's

*(&arr+0) to *(&arr+(n-1))

For the rest of us who are manipulating sets of values and not offsets on pointers and aren't delusionally attached to conventions, there's arr[1] to arr[n]

[-] navigatron@beehaw.org 2 points 1 year ago

But then arr.length == the last index, and that’s just too convenient :(

[-] barsoap@lemm.ee 2 points 1 year ago* (last edited 1 year ago)
ptr[n] == n[ptr] == *(ptr+n) == *(n+ptr).

Addition is commutative so of course array indexing is and why the hell are you taking the address of a pointer. Also it's not "int pointer foo" but "foo, dereferenced, is an int" that's why it's int *foo not int* foo. I won't die on that mountain fortress because it is unassailable. Never write char **argv (but char *argv[]) but it's vital to understand why it doesn't make a difference to the compiler. It's what passes as self-documenting code in C land.

Also 0-based indexing is older than C. It's older than assembly.

[-] ezchili@iusearchlinux.fyi 1 points 1 year ago* (last edited 1 year ago)

Why do you assume it was a pointer type? There's no types. Why do you assume C either? This is pseudo code to illustrate pointer offsets

[-] barsoap@lemm.ee 1 points 1 year ago

Why do you assume it was a pointer type?

Because afterwards you said arr[n]. By convention n is definitely an integer and if arr is also, say, an integer, you get

 error: subscripted value is neither array nor pointer nor vector

Why do you assume C either?

Because you didn't write ^(@arr+0) (Not sure that's even valid though my Pascal is very rusty).

This is pseudo code to illustrate pointer offsets

Granted. But then it's still Pseudo-C, not Pseudo-Pascal or Pseudo-Whitespace.

[-] ezchili@iusearchlinux.fyi 1 points 1 year ago* (last edited 1 year ago)

It's pseudo-nothing

It conveys a point, which you got, and if you decide to invent a syntax and bicker on it it's just you

Really pointless discussion

this post was submitted on 08 Mar 2024
336 points (100.0% liked)

196

17461 readers
476 users here now

Be sure to follow the rule before you head out.


Rule: You must post before you leave.



Other rules

Behavior rules:

Posting rules:

NSFW: NSFW content is permitted but it must be tagged and have content warnings. Anything that doesn't adhere to this will be removed. Content warnings should be added like: [penis], [explicit description of sex]. Non-sexualized breasts of any gender are not considered inappropriate and therefore do not need to be blurred/tagged.

If you have any questions, feel free to contact us on our matrix channel or email.

Other 196's:

founded 2 years ago
MODERATORS