Swift - Write program to Create a structure

Requirements

Create a structure named DOB to store a date containing the year, month, and day.

Hint

using struct keyword

struct DOB {
    var year: Int
    var month: Int
    var day: Int
}

Related Exercise