@Feufochmar i'm glad programming language designers generally aren't sticks in the mud like you are
@Feufochmar there's potential for abuse with just ascii too. i could give all my identifiers max-length base 64 uuids and make similarly awful code. either way, the responsibility for making the code legible and sensible is up to the coder. that responsibility doesn't go away just because they have more characters to work with
@typhlosion The base64 uuids abuses are easier to spot than mixed latin/cyrilllic/greek identifiers.
@Feufochmar so? the point remains: it's up to the programmer to employ good coding practices, and it's up to the people around the coder to take action about bad ones, irrespective of the programming language in question. either way, the person who goes out of their way to make bad code is not someone you want on your project. in sum, i don't think this is something the language itself should have an opinion on.
@Feufochmar (if you really want to make sure stuff like that is kept out of your projects, run pull requests and commits through a linter rather than asking to rob an entire programming language of potentially useful functionality)
@typhlosion
One of the few legit use of this fonctionnality I see is allowing writing code in other languages than English. The functionnality I proposed allows it too, but forces the programmer to tell which unicode block they wants to use.
However, most coding rules say to write code in English, notably when working in teams, or companies.
The linter should be part of the compiler, or provided with the language tools, as most of the time, one would be required for checking coding rules.
@Feufochmar i'm getting irritated so let's just agree to disagree
@typhlosion Cool feature does not mean nice feature from a maintenance point of view. Generalized Unicode identifiers are cool, not nice, especially when you do not work alone on your code.
Code should be easy to read, understand, and modify. There is too much potential abuse with unrestricted Unicode.
A nicer feature would be to allow the programmer to indicate which set of letters are used for identifiers in a source file. So that you are not limited to Latin.