sayHello function

String sayHello(
  1. String name
)

Implementation

String sayHello(String name){
  return "Hello $name, Nice To See You!";
}