If Else Statement In Swift Programming Language
Swift provides the following types of decision making statements. Swift – If Statement Example import Cocoa var A:Int = 10; /* Check the boolean condition using if statement */ if A < 20 { /* If condition is true then print the following */ println(“A is less than 20”); } println(“Value of variable A […]
Continue Reading