func greet(name: String) {
  print("Hi \(name)"!)
}

// The above function returns an empty tuple () which is also known as Void.

// The above declaration is the same as the following
func greetWithVoidReturn(name: String) {
  print("Hi \(name)"!)
  return ()
}