I have a question for all you programmers in Europe and Asia. When your countries native language is something other than English or better yet, you have a non-roman alphabet (e.g. Cyrillic). Do you still type code in English? Obviously, your text messages will be in your native language, but what about the reserved words?
Do you still type code that looks exactly like this? What happens if your alphabet doesn't have anything that even looks like an "i"?
C
for (i=0; i<10; i++)
DoSomeThing;
VB.Net
For i = 1 To 10
DoSomeThing
Next
Dave
Do you still type code that looks exactly like this? What happens if your alphabet doesn't have anything that even looks like an "i"?
C
for (i=0; i<10; i++)
DoSomeThing;
VB.Net
For i = 1 To 10
DoSomeThing
Next
Dave
