That really is great news indeed! Thanks to all the people who donated and made this possible!
@Syco54645: I guess a little miscommunication has occured. First of all I didn't mean to attack you, although I agree that my first post may be interpreted as such. What I wanted to make clear are my own experiences switching from one language to another. As I've already said, syntax is (in my opinion) a matter of learning by doing. You get the hang of it by using it. Looking at code allows you to understand how to use the syntax, but that's all it does and looking these syntaxes up on the internet is just a matter of seconds. I'm sure that table builders will get used to the new syntax relatively quickly. What will be harder is the use of the functions, which is fully dependend on what louizou is creating for us.
About your code, you're comparing two different loops. Although the number of steps is the same, the value of i is different. To compare two loops which are exactly the same, you can start at position 0 using the Visual Basic script. Whether you do this or not is mostly dependend on the context:
CODE
For i As Integer = 0 To 9 Step 1
'Some code
Next
You can add the counter (i) behind "Next", but in most cases this isn't required.
CODE
for(int i = 0; i <= 9; i++){
//Some code
}
//This is the same as
for(int i = 0; i < 10; i++){
//Some code
}
Edited by Themer, 21 April 2012 - 08:18 AM.