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

Content deleted Content added
Line 97:
| Visual Basic
| If ''condition'' Then \n ''instructions'' \n Else ''instructions'' \n End If
| If ''condition'' Then \n ''instructions'' \n ElseIf ''condition'' Then \n ''instructions'' \n Else ''instructions'' \n End If
| While ''condition'' \n ''instructions'' \n Wend
| For i = 1 To N Step 1 \n ''instructions'' \n Next