vote up 2 vote down star

I have always wondered how programming languages are different, if they are indeed different, to other parts of the world? How do people in parts of Asia/Europe/South America use programming? Whats the syntax like? Any examples?

flag

Related: stackoverflow.com/questions/202723/… and stackoverflow.com/questions/440052/… and stackoverflow.com/questions/250824/… and stackoverflow.com/questions/1653227/… – dmckee Nov 5 at 23:42
thank you for the links – aforloney Nov 5 at 23:48
In general, no, they don't differ. A programming language is a language. It doesn't differ from country to country any more than Spanish or Japanese does. A C++ programmer writes in C++ regardless of where he lives. He doesn't write in Swedish or German or Mexian. – jalf Nov 6 at 0:06

6 Answers

vote up 1 vote down check

The good thing of programming languages is that they are almost universal (excluding some unicode support related things :D ).

I think that everywhere they're just the same, same syntax and same behaviour.. IT is based on standards, programming languages are not excluded!

link|flag
thats very interesting! I remember way back when I had my hands on some code from another country and I can't remember where I put it, but this question cross my mind so i figured id ask – aforloney Nov 5 at 23:35
probably variables name were different, or class names, but the syntax is always the same.. of course it's possible to reinvent a language just translating keyword in other languages but why do you need to do it? English is so concise.. – Jack Nov 5 at 23:43
vote up 1 vote down

Here in Sweden (Northern Europe) I guess it's pretty much the same as in the USA. Java, python, ruby, C#, C++, perl are all quite popular. Functional languages as Lisp and Erlang (actually a language invented here in Sweden, and quite good for distributed stuff) are less common, but not all that uncommon.

link|flag
vote up 1 vote down

The only thing that differs is what people name their variables, and what locale settings they use.

link|flag
I name them in English even if I'm Italian ;-) – klez Nov 6 at 0:26
vote up 1 vote down

Basically we all have to learn English :)

link|flag
are there non-english programming languages? – aforloney Nov 5 at 23:36
2  
Only a few words, haha. I imagine it would be weird, especially if you didn't know English. I would have trouble at first programming in another language... público estático vacío principal (Secuencia[] args) { // ¡Pero no hablo español! } – Kaleb Brasee Nov 5 at 23:40
@Kaleb: +1 for inventing Spanish Java – RMorrisey Nov 6 at 0:07
Ni me imagino, creando una clase sellada o retornando un nulo. – hminaya Nov 6 at 2:34
vote up 1 vote down

I m pretty sure that you can find people who write C/C++ , java , C# code everywhere since almost all universities teach those language , the only difference is the naming of variables and functions (or methods) usualy they are named based on the native language of the developer

link|flag
vote up 2 vote down

There are indeed a small number of non-English programming languages. They do not enjoy widespread use. In programming in particular, and slightly less with technology in general, English seems to be the language of choice. I think this is likely due to the Internet originating in the US.

link|flag
2  
You know, when you look at it, most of the history of computing takes place in either the US or Britain, even going back to Charles Babbage. IBM started with an invention meant to help the US census. The US and Britain both worked on computers to crack German encryptions in WW II. UNIX was developed in New Jersey. And of course, many of the modern day computing giants are located in Silicon Valley. – BernzSed Nov 5 at 23:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.