• Ptsf@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    5 months ago

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

      • thevoidzero@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        5 months 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.

          • toastal@lemmy.ml
            link
            fedilink
            arrow-up
            0
            ·
            edit-2
            5 months 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.

    • Faresh@lemmy.ml
      link
      fedilink
      English
      arrow-up
      0
      ·
      5 months 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.