// This program calculates the area of a rectangle let width = 5 let height = 3 let area = width * height // multiply width by height print(area) // prints 15
Click Run to execute this code.