평소에 이름은 모르지만 사용하던 기술 이름들을 잊지 않도록 정리해둔 단어장
?!
??
val name: String? = null val displayName = name ?: "Unknown" println(displayName) // 출력: "Unknown"