Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
You can compare how WHILE loops differ between Visual FoxPro and other programming languages.
Visual FoxPro |
BASIC |
|---|---|
DO WHILE n < 100 n = n + n ENDDO |
Do While n < 100 n = n + n Loop |
Pascal |
C/C++ |
|---|---|
while n < 100 do n := n + n; |
while(n < 100) n += n; |