You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func doGuard(word str:String?)->String{
guard let unwrapping = str else{ // if-let은 함수 밖에서도 사용이 가능하지만, guard-let은 함수 내에서만 구현이 가능하다.
print("this is nil")return"nil"}return unwrapping
}