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

Content deleted Content added
Line 98:
| 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
| Do While ''condition'' \n ''instructions'' \n WendLoop
| For i = 1 To N Step 1 \n ''instructions'' \n Next
|