I'm very basic to Swift and trying to convert a text value, multiply its value by 7 and print the output.
WHen I try to print the output I get "lldb"?
Why do I get this error?
@IBAction func findAge(sender: AnyObject) {
print(age.text!)
let enteredAge = Int(age.text!)
let catYears = enteredAge! * 7
print(String(catYears))
}