A combination variable and a function
What is a computed property
A way to declare a state variable
What is @State private var
A way to get the input values from the user
What is readLine()
The first term in a pair in a dictionary
What is a key
A decimal number in Swift
What is a double
The value of a state variable
What is can change over time
The return value of readLine()
What is a String
The second term in a pair in a dictionary
What is a key
The way to declare a function in Swift
What is func
Runs code to calculate values
What is the main purpose of computed properties
The refrence of a @State variable in a body
What is provides updated values
The way to force unwrap an optional string
The way to print the first value in a dictionary
What is print(name_of_dictionary[0])
The way to remove the second item in an array
What is name_of_array.remove(at: 1)