
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hello,
I am using cycle operator 'for' in similar example like the one below
for(i=1;i<=255;i++) Print("Number: ",i);
This one should print the numbers from 1 to 255, however it prints the numbers from the number which is different from 1, e.g. 20 and continues up to 255.
It should always start from 1, shouldn't it?
If I use the same example with smaller ending number like
for(i=1;i<=100;i++) Print("Number: ",i);
then it works
I am not sure how it is possible.........