All
Keyword loop
Keyword loop can be: loop with condition at the end, loop with condition on the beginning, loop with condition at the end until is false, loop with condition on the beginning until is false. Keyword loop we can find in languages: Basic, FreeBASIC, Visual Basic .NETloop with condition at the endKeyword loop you can find in: Basic FreeBASIC Visual Basic .NET
do
statements
loop while condition
loop with condition on the beginningKeyword loop you can find in: Basic FreeBASIC Visual Basic .NET
do while condition
statements
loop
loop with condition at the end until is falseKeyword loop you can find in: Basic FreeBASIC Visual Basic .NET
do
statements
loop until condition
loop with condition on the beginning until is falseKeyword loop you can find in: Basic FreeBASIC Visual Basic .NET
do until condition
statements
loop