swift optional binding code example
Example 1: swift declare optional values
// Optional values are types that can contain nil
var optionalValue: String? // this can be done with more than strings, but for this example that's what was used
Example 2: print variable swift
var str1 = "Hello, world"
print(str1)