funshen in swift code example
Example 1: swift how to call a function
//function trying to be called
func aFunction() {
print("called function")
}
//call function like this
aFunction()
Example 2: how to set return type swift
func aFunction() -> <RETURN_TYPE> {
return <RETURN_TYPE>
}
//call function like this
aFunction()