// 3.2는 recap으로 복습이었다. 넘어가자!positional parameter인 상태로도 변수를 optional하게 받을 수 있도록 할 수 있다.* return값이 바로 나올 경우 fat arrow로 대체할 수 있다는 것을 3.0에서 배웠다.// 일반적인 함수 선언 방식String sayHello(String name, int age, String country) => "Hello $name, you are $age, and you come from $country";이 함수는 무조건 'name, age, country'순서로 모든 변수를 입력해야 함수를 실행할 수 있다.이때, 'country'는 optional하게(필수적이지 않도록)하고 싶다면?대괄호를 씌워준다.?를 붙여서 nullable하..