sayHello function

String sayHello(
  1. String name
)

Implementation

String sayHello(String name){
  return "Hello $name nice to see you";
}