Continue Statement in Swift
            Continue statements allow you to skip an iteration of a loop.
        
     
    
            
    
        
    
        Break Statement in Swift
            Break statements allow for you to immediately terminate a loops execution.
        
     
    
            
    
        
    
        Repeat-while Loops in Swift
            A repeat-while loop always executes once and then evaluates a condition to see if it will execute any further iterations.
        
     
    
            
    
        
    
        While Loops in Swift
            While loops allow you to execute a block of code while a condition evaluates to true.
        
     
    
            
    
        
    
        If Statements in Swift
            If statements allow you to evaluate conditions and execute different blocks of code depending on the condition.
        
     
    
            
    
        
    
        Booleans and Boolean Operators in Swift
            A boolean is a data type that represents either a true or false.
        
     
    
            
    
        
    
        Tuples in Swift
            Tuples allow you to create a type that holds multiple values of any type.
        
     
    
            
    
        
    
        Type Conversion in Swift
            How to convert from one data type to another.
        
     
    
            
    
        
    
        Number Operators in Swift
            Number operators allow you to provide mathematical calculations in your code.
        
     
    
            
    
        
    
        Variables in Swift
            How to define and assign variables in Swift.