iOS Swift - User Input and Forms
Given this Swift struct and code, what will print?
struct FormData {
var email: String
var subscribed: Bool
}
let data = FormData(email: "user@example.com", subscribed: true)
print(data.subscribed)