Share via


FOR Loops (Visual FoxPro)

You can compare how FOR loops differ between Visual FoxPro and other programming languages.

Visual FoxPro

BASIC

FOR n = 1 TO 10

? n

ENDFOR

For n = 1 to 10

Print n

Next n

Pascal

C/C++

for n := 1 to 10 do

writeln(n);

for(n=1; n<11; n++)

printf("%d\n",n);

See Also

Reference

FOR ... ENDFOR Command

Visual FoxPro and Other Programming Languages