Language
Version: 4
Categories
-
User Program Communication
-
Variables
-
Control Flow
-
Functions
-
Object Oriented Programming
Search Results
Searching for: Blocks in Swift
Repeat-While Loop
Language: Swift
The repeat-while loop executes a block of code while a boolean expression evaluates to true. It checks the boolean expression after each iteration. It terminates as soon as the expression evaluates to false. Same behaviour as the do-while loop in other languages.
< Previous Page |