• Christian@lemmy.ml
    link
    fedilink
    English
    arrow-up
    12
    ·
    2 days ago

    It really bugs me when people don’t comment their code at all. I have no idea what this is supposed to do.

  • HiddenLayer555@lemmy.ml
    link
    fedilink
    English
    arrow-up
    10
    ·
    2 days ago

    Because it supports Unicode as variable/class/function names and Unicode includes all the characters humans have ever used, even dead languages (I assume for historians to digitize ancient texts?)

  • Bob@feddit.nl
    link
    fedilink
    arrow-up
    14
    ·
    2 days ago

    I don’t know much about coding, but I know Cuneiform isn’t an alphabet.

  • Ptsf@lemmy.world
    link
    fedilink
    arrow-up
    160
    arrow-down
    1
    ·
    4 days ago

    Isn’t it all unicode at the end of the day, so it supports anything unicode supports? Or am I off base?

    • NeatNit
      link
      fedilink
      arrow-up
      25
      ·
      3 days ago

      Yes, but the language/compiler defines which characters are allowed in variable names.

      • thevoidzero@lemmy.world
        link
        fedilink
        arrow-up
        5
        ·
        3 days ago

        I thought the most mode sane and modern language use the unicode block identification to determine something can be used in valid identifier or not. Like all the ‘numeric’ unicode characters can’t be at the beginning of identifier similar to how it can’t have ‘3var’.

        So once your programming language supports unicode, it automatically will support any unicode language that has those particular blocks.

        • NeatNit
          link
          fedilink
          arrow-up
          4
          ·
          3 days ago

          Sanity is subjective here. There are reasons to disallow non-ASCII characters, for example to prevent identical-looking characters from causing sneaky bugs in the code, like this but unintentional: https://en.wikipedia.org/wiki/IDN_homograph_attack (and yes, don’t you worry, this absolutely can happen unintentionally).

          • lunarul@lemmy.world
            link
            fedilink
            arrow-up
            2
            ·
            2 days ago

            I can’t imagine how something like homograph attacks can happen accidentally. If someone does this in code, they probably intended to troll other contributors.

            • NeatNit
              link
              fedilink
              arrow-up
              3
              ·
              2 days ago

              Multilingual users have multiple keyboard layouts, usually switching with Alt+Shift or similar key combo. If you’re multitasking you might not realize you’re on the wrong keyboard layout. So say you’re chatting with someone in Russian, then you alt+tab to your source code and you spot a typo - you wrote my_var_xopy instead of my_var_copy. You delete the x and type in c. You forget this happened and you never realized the keyboard layout was wrong.

              That c that you typed is now actually с, Cyrillic Es.

              What do you say, is that realistic enough?

              • lunarul@lemmy.world
                link
                fedilink
                arrow-up
                4
                ·
                edit-2
                2 days ago

                I use multilingual keyboard layouts, so I know that at least on Windows the selected layout is specific to each window. If I chat with someone in one language, then switch to my IDE, it will not keep the layout I used in the chat window.

                But I also have accidently hit the combination to change layouts while doing something, so it can happen. I’m just surprised that Cyrillic с is on the same key as C, instead of S.

                • NeatNit
                  link
                  fedilink
                  arrow-up
                  2
                  ·
                  2 days ago

                  I believe there’s a setting for whether it’s global or per-window. Personally I prefer global, because I can’t keep track of more than one state and I absolutely hate the experience of typing something and getting a different language than you expect.

          • toastal@lemmy.ml
            link
            fedilink
            arrow-up
            7
            ·
            edit-2
            3 days ago

            OCaml’s old m17n compiler plugin solved this by requiring you pick one block per ‘word’ & you can only switch to another block if separated by an underscore. As such you can do print_แมว but you couldn’t do pℝint_c∀t. This is a totally reasonable solution.

          • thevoidzero@lemmy.world
            link
            fedilink
            arrow-up
            1
            ·
            3 days ago

            Sorry, I forgot about this. I meant to say any sane modern language that allows unicode should use the block specifications (for e.g. to determine the alphabets, numeric, symbols, alphanumeric unicodes, etc) for similar rules with ASCII. So that they don’t have to individually support each language.

            • NeatNit
              link
              fedilink
              arrow-up
              1
              ·
              3 days ago

              Oh, that I agree with. But then there’s the mess of Unicode updates, and if you’re using an old version of the compiler that was built with an old version of Unicode, it might not recognize every character you use…

      • lad@programming.dev
        link
        fedilink
        English
        arrow-up
        3
        ·
        3 days ago

        Yes, but it still is about language, not game engine.

        Albeit technically, the statement is correct, since it is more specific.

            • ℍ𝕂-𝟞𝟝@sopuli.xyz
              link
              fedilink
              English
              arrow-up
              2
              ·
              3 days ago

              Godot is neat. There is C# support as well if you find that easier, but coming from Unreal, it’s night and day. I know Unreal has so much more features, but for a hobbyist like me, Godot is much better. It’s just this small executable, and you have everything you need to get creative.

    • Faresh@lemmy.ml
      link
      fedilink
      English
      arrow-up
      9
      ·
      3 days ago

      I think they exclude some unicode characters from being use in identifiers. At least last I tried it wouldn’t allow me to use an emoji as a variable name.

        • Faresh@lemmy.ml
          link
          fedilink
          arrow-up
          8
          ·
          3 days ago

          That code was C++ or something like that. Not GDScript.

          I tested this on Godot 4.2.1. You can write identifiers using a different writing system other than latin and you are allowed to have emojis in strings, but you aren’t allowed to use emojis in identifiers.

          • lunarul@lemmy.world
            link
            fedilink
            arrow-up
            3
            ·
            2 days ago

            There’s probably a rule that requires variables to start with a letter or underscore. Emoji are nor marked as letters. Something like _👍 will probably work.

            • bleistift2@sopuli.xyz
              link
              fedilink
              English
              arrow-up
              1
              ·
              2 days ago

              Coding must be a nightmare if you’re choosing programming languages at random 😱

              But you must also be learning quite a lot.

              • histic@lemmy.dbzer0.com
                link
                fedilink
                English
                arrow-up
                1
                ·
                2 days ago

                I’m not choosing at random lol that would be crazy but I mostly use python and have been teaching myself go and some rust

  • toastal@lemmy.ml
    link
    fedilink
    English
    arrow-up
    38
    arrow-down
    4
    ·
    edit-2
    3 days ago

    Unironically awesome. You can debate if it hurts the ability to contribute to a project, but folks should be allowed to express themselves in the language they choose & not be forced into ASCII or English. Where I live, English & Romantic languages are not the norm & there are few programmers since English is seen as a perquisite which is a massive loss for accessibility.

    The hotter take: languages like APL, BQN, & Uiua had it right building on symbols (like we did in math class) for abstract ideas & operations inside the language, where you can choose to name the variables whatever makes sense to you & your audience.

    • HiddenLayer555@lemmy.ml
      link
      fedilink
      English
      arrow-up
      3
      ·
      edit-2
      2 days ago

      Honestly it wouldn’t even be that hard to release full translated versions of existing programming languages. Like Python in Punjabi or Kotlin in Chinese or something (both of which already support unicode variable/class/function names). Just have a lookup table to redefine each keyword and standard library name to one in that language, it can literally just be an additional translation layer above the compiler/interpreter that converts the code to the original English version.

      It’s honestly really surprising that non-English speakers have developed entirely new programming languages in their own language (unfortunately none of which are getting very widespread use even among speakers of that language), but the practice of simply translating a widely used and industry standard English programming language doesn’t seem to be much of a thing.

      If I ever make my own programming language, I’m probably going to bake multi-language support into the compiler. Just supply it with a lookup table of translated terms and the code in that language.

    • unwarlikeExtortion@lemmy.ml
      link
      fedilink
      arrow-up
      6
      arrow-down
      1
      ·
      3 days ago

      Yeah. Tbh, I always wondered why programming languages weren’t translated.

      I know CS is all about english, but at least the default builtin functions of programming languages could get translated (as well as APIs that care about themselves).

      Like, I can’t say I don’t like it this way (since I’m a native english speaker), but I still wonder what if you could translate code.

      Variables could cause problems (more work with translation or hard to understand if not translated). But still - programming languages have no declentions and syntax is simpler so it shouldn’t even compare to “real” languages with regards to difficulty of implementation.

      • hikaru755@lemmy.world
        link
        fedilink
        arrow-up
        16
        ·
        2 days ago

        I’m German, and I would not want that. German grammar works differently in a way that makes programming a lot more awkward for some reason. Things like, “.forEach” would technically need three different spellings depending on the grammatical gender of the type of element that’s in the collection it’s called on. Of course you could just go with neuter and say it refers to the “items” in the collection, but that’s just one of lots of small pieces of awkwardness that get stacked on top of each other when you try to translate languages and APIs. I really appreciate how much more straightforward that works with English.

      • bleistift2@sopuli.xyz
        link
        fedilink
        English
        arrow-up
        10
        ·
        edit-2
        2 days ago

        Programs aren’t written by a single team of developers that speak the same language. You’d be calling a library by a Hungarian with additions from an Indian in a framework developed by Germans based on original work by Mexicans.

        If no-one were forcing all of them to use English by only allowing English keywords, they’d name their variables and functions in their local language and cause mayhem to readability.

        [Edit:] Even with all keywords being forced to English, there’s often half-localized code.

        I can’t find the source right now, but I strongly believe that Steve McConnell has a section in one of his books where he quotes a function commented in French and asks, “Can you tell the pitfall the author is warning you about? It’s something about a NullPointerException”. McConnell then advises against local languages even in comments

      • eRac@lemmings.world
        link
        fedilink
        arrow-up
        2
        ·
        2 days ago

        Excel functions are translated. This leads to being pretty much locked out of any support beyond documentation if your system language isn’t English.

    • lunarul@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      2 days ago

      Isn’t unicode support for programming not something new? I’ve seen a lot of code using Cyrillic or Chinese characters.

      • toastal@lemmy.ml
        link
        fedilink
        arrow-up
        2
        ·
        2 days ago

        Inside of strings or comments or as an encoding is close to universal now, but for wide support for operators & variable names I would generally it isn’t. Some languages straight up do not support non ASCII like OCaml, others only support bicameral scripts like PureScript, but others like JavaScript can support Unicode for variable names but doesn’t support defining infix operators or uses Unicode for any existing operators. Raku is probably the most Unicode-friendly language, & some of the mathier ones like Agda as well.