String sayHello(String potato) {
return "hello $potato nice to meet you!";
}
String sayHello(String potato) => "hello $potato nice to meet you!";
// fat arrow syntax를 사용할 수 있다.
String sayHello(String potato) {
return "hello $potato nice to meet you!";
}
String sayHello(String potato) => "hello $potato nice to meet you!";
// fat arrow syntax를 사용할 수 있다.