Comparison of programming languages (basic instructions): Difference between revisions

Content deleted Content added
Line 96:
|-
| Visual Basic
| ifIf ''condition'' thenThen \n ''instructions'' \n endElse if''instructions'' \n End If
| If ''condition'' Then \n ''instructions'' \n ElseIf''condition'' Then \n ''instructions'' \n Else ''instructions'' \n End If
|
| whileWhile ''condition'' \n ''instructions'' \n wendWend
| forFor i = 1 toTo N stepStep 1 \n ''instructions'' \n nextNext
|
|-