much easier to look for guidance for coding in english instead of my native language, syntax makes more sense too. Though personally i would wish more stuff was properly translated into finnish instead of english slowly gnawing at it.
That's probably fair, but I would also worry that anything coded in Finnish would be trying to find a way to kill me for not respecting its personal space.
Never even heard of a programming language in Danish. Even the ones invented by danes are in english.
I wrote variable names and comments in Spanish when I started as my English level back then was very low.
Once my English improved and started to use English documentation and tutorials I just switched to write in English.
In my previous job I worked at software consultancy, I had coworkers who wrote code in Spanish but it wasn’t the norm.
Currently I work for an international company, the team is Spanish but we have to write everything in English as it can be shared with teams in other countries and audited by international organisations.
When AI tools were allowed, a lot of people use them in Spanish, it generates code with comments in Spanish. I had to reject a lot of PRs from the same guys over an over because everything must be in English.
Coding is all done in the language of the code... if, and, or, for, include, except, etc. It's not exactly a vast array of words you need to know to be able to code.
Also, I can only speak for Sweden, but I started learning english in third grade. These days they start in kindergarten. Basic stuff, days of the week, 1 through 10. But still.
Well we learn to code in the programming language that the teacher choses, not in any natural language at all, so neither English nor our native languages.
But all significant programming languages that I know do have reserved control words that are taken from English. Maybe that is the direction of your question?
Then no, mostly we don't use specifically crafted or preprocessed programming languages just to have control words recognizable as words in our native languages. We just learn the English-based control words as features of the programming language, if we don't already recognize them.
As for the variable names and natural language comments embedded in the code, that we create, that varies. I'd say as soon as interlingual collaboration or code sharing is a possibility, people will go for English in my experience. And I suspect that people who have gone for English before tend to stick to English even in their private use.
This is also related to learning materials, documentation of language features and libraries being available to the largest degree in English.
I perceive it as easier to stick to English, rather than to code switch between natural language while I program.
There have been some interesting attempts to translate languages, but generally at most you would get phoneatically local names using English characters for functions and variables, etc.
Russian here.
For the most part, it's all English. Not even romanized Russian in variable names, although that happens sometimes. Comments are mostly in Russian, though. Depending on the company and whether it has to deal with countries where Russian isn't as widespread, which is not a lot these days, that English can be a little difficult to understand once you start applying English language logic to it as opposed to basically writing Russian poorly translated to English. It's fine if the variables, classes and method names are short and offer little room for stringing words together, but anything complex poses risk of producing something that will be difficult to read without heavy Russian background and developed English skills (at both comprehending and producing).
However, there is a number of Russian-based programming language. I am fortunate to have never worked with any one of them. One of them is 1C:Enterprise, which is also a sizeable business for automation software and such.
Here's what it looks like. I can spot a couple of English words there, though. And having learned programming through English and English only, I actually find it more difficult to read, because Russian-native developers still often refer to things in English, even if there's a word for that same thing in Russian - it's just that much part of your programming work.
That’s so trippy
Only in the very beginning people use anything besides english
No chance, hungarian has non-ascii characters(ő and ű), digraphs(cs, dz, gy, ly, ny, sz, ty, zs) and a trigraph(dzs). Also generally how the language works is pretty disadvantegous to coding and tech. English has maaaany useful one syllable imperatives(get, click, etc), even with doors irl its often in english whether you pull or push cause hungarian doesnt really have these completely stateless verbs. One thing that did exist back in the day was people coding in german but i only know a single person who still does this.
We always code in English at work. Using our native language for programming is generally frowned upon.
I'm a native Spanish speaker, it depends on the language and the person.
Spanish has very few diacritics, so it's quite understandable in ASCII (áéíóúüñ). But I guess it would be a lot harder in other languages like Czech or Vietnamese.
When I program for myself or in public repos, I tend to code everything in English, but when I have to do projects with classmates at my university, I usually do it in Spanish because they are not great at English.
Many programming languages support Unicode nowadays
As somebody with a friend who speaks Chinese as their first language, I know she often uses non-English file names, variable names, etc.
It's still standard Python and C++ though (and excellent code at that!), nothing esoteric.
The real deal isn't the language barrier but the keyboard layout. Most special characters usually used for coding are just perfectly at hand when using the US layout.
At one point i started buying US keyboards set with the US-int layout, which i find easier to use than ES and latam.
This, I switched my keyboards to US layout, and since I learned a bit touch typing , having the laptop with ISO es_ES is not of a big deal having the symbols not matching the input layout.
For Mac it is a bit shittier, I don’t get used to the way to introduce the Ñ with its US int.
On Linux, I didn’t managed to set the US int, only US so I don’t have either Ñ nor the possibility to add accents. It might be easy but I didn’t look for it either.
Preferably in English. Nothing is worse than reading code with a mixture of languages. Although false friends can also be quite annoying.
Although false friends can also be quite annoying.
What does "false friends" mean?
As others stated, it is when two words in different languages are similar phonetically/graphically.
They are called false friends because they seem familiar and you expect to mean the same as with other words that are pronounced similarly in two languages and mean the same. False friends not just mean different things but they sometimes can change the phrase in a bad way.
Note: The following examples are with Spanish from Spain, they might be different in other Spanish speaking countries.
Alice and Bob discussed about having children
Alicia y Bob discutieron sobre tener niños
In English Alice and Bob had a conversation, in Spanish they had an argument.
Bob is a sensible guy
Bob es un tipo sensible
Bob is a person who acts with prudence and thinks carefully in English, in Spanish he is a guy who is easily affected by feelings.
I had an English teacher who told the same anecdote about false friends and her sister. She was in UK and the batteries for the remote died, so she went to a convenience store and asked if they had them.
The thing is that in Spanish we only use battery (batería) for the ones that are not meant to be replaced regularly, like the car battery, the laptop battery, etc. The replaceable ones (even the rechargeable that take the same shape), are called pilas. So in the anecdote, the sister told the woman at the store very confidently “Do you have piles?” (haemorrhoids, for the ones who doesn’t know).
I don’t know how real the anecdote was, but it fulfilled its purpose to make us aware of these situations.
Words in two different languages that sound the same but don't have the same meaning. Real example from my last work: The German word for "topic" is "Thema". So our programmers called the database field and variables "theme".
In a nutshell, words that look the same / similar but with different meanings in their respective languages, making it pretty confusing.
Online: everything in English for me, except for some explanations sometimes but that's just at random as I'm a hobbyist/amateur.
Offline (a course I did): explanations in Portuguese (Brazil), we learned Portugol (programming language that uses Portuguese keywords) as an introduction then switched to C.
It depends honestly.
Key words like If, Match, Else, From, This ,etc will be in English, but variable names can be in any Unicode language as the var name gets converted to machine code after compilation.

Also air traffic control and commercial aviation radio communication are in English, worldwide.
About every programming language is based on English. Names for functions, objects, variables are based on personal, project, or company preferences. In reality you'll find these only in two languages as far as I've seen in the last decades: either English or Chinese. I've seen German and, sadly, French, but they are outliers.
Everyone should code in Armenian. Why? Because it would be funny.
Western Armenian or Eastern Armenian?
Idk. I was just talking out of my ass. I don't know how they are different.
So you’re saying everyone should code out of their ass.
better than vibe coding
i've seen both. there is german program code with german variable names and german comments. yeah, it sounds about as strange as it is.
// diese variable beschreibt den luftzug an den messrohren
var trötflöte = lese_zahl_aus(datenbank);
but it's rare. most people who work in IT in germany will write english variable names and english comments.
As a native Dutch speaker, Trötflöte sounds hilarious.
Hedy is a new programming language designed for pedagogy that can be localized to different languages.
No Stupid Questions
No such thing. Ask away!
!nostupidquestions is a community dedicated to being helpful and answering each others' questions on various topics.
The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:
Rules (interactive)
Rule 1- All posts must be legitimate questions. All post titles must include a question.
All posts must be legitimate questions, and all post titles must include a question. Questions that are joke or trolling questions, memes, song lyrics as title, etc. are not allowed here. See Rule 6 for all exceptions.
Rule 2- Your question subject cannot be illegal or NSFW material.
Your question subject cannot be illegal or NSFW material. You will be warned first, banned second.
Rule 3- Do not seek mental, medical and professional help here.
Do not seek mental, medical and professional help here. Breaking this rule will not get you or your post removed, but it will put you at risk, and possibly in danger.
Rule 4- No self promotion or upvote-farming of any kind.
That's it.
Rule 5- No baiting or sealioning or promoting an agenda.
Questions which, instead of being of an innocuous nature, are specifically intended (based on reports and in the opinion of our crack moderation team) to bait users into ideological wars on charged political topics will be removed and the authors warned - or banned - depending on severity.
Rule 6- Regarding META posts and joke questions.
Provided it is about the community itself, you may post non-question posts using the [META] tag on your post title.
On fridays, you are allowed to post meme and troll questions, on the condition that it's in text format only, and conforms with our other rules. These posts MUST include the [NSQ Friday] tag in their title.
If you post a serious question on friday and are looking only for legitimate answers, then please include the [Serious] tag on your post. Irrelevant replies will then be removed by moderators.
Rule 7- You can't intentionally annoy, mock, or harass other members.
If you intentionally annoy, mock, harass, or discriminate against any individual member, you will be removed.
Likewise, if you are a member, sympathiser or a resemblant of a movement that is known to largely hate, mock, discriminate against, and/or want to take lives of a group of people, and you were provably vocal about your hate, then you will be banned on sight.
Rule 8- All comments should try to stay relevant to their parent content.
Rule 9- Reposts from other platforms are not allowed.
Let everyone have their own content.
Rule 10- Majority of bots aren't allowed to participate here. This includes using AI responses and summaries.
Credits
Our breathtaking icon was bestowed upon us by @Cevilia!
The greatest banner of all time: by @TheOneWithTheHair!