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 .NET

loop with condition at the end
do
statements
loop while condition
Keyword loop you can find in: Basic FreeBASIC Visual Basic .NET


loop with condition on the beginning
do while condition
statements
loop
Keyword loop you can find in: Basic FreeBASIC Visual Basic .NET


loop with condition at the end until is false
do
statements
loop until condition
Keyword loop you can find in: Basic FreeBASIC Visual Basic .NET


loop with condition on the beginning until is false
do until condition
statements
loop
Keyword loop you can find in: Basic FreeBASIC Visual Basic .NET



Languages: en hu cz sk