A have a few basic questions in regards to the returns a function has. Take for example the following function:
func add2(_ num1: Int, _ num2: Int) {
print(num1 + num2)
}
Questions:
1.) There is no need for the word return before the print statement because it is just one return correct?
2.) What kind of return type would this be considered if it is just a print statement.