Skip to content

Instantly share code, notes, and snippets.

@le0nidas
Created March 8, 2020 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save le0nidas/59f651e96d43172764cd048099b578a1 to your computer and use it in GitHub Desktop.
Save le0nidas/59f651e96d43172764cd048099b578a1 to your computer and use it in GitHub Desktop.
fun main() {
val contact = Contact(PhoneNumber("12345"))
show(contact.phoneNumber) // "Phone number: 12345"
val contactWithInvalidPhoneNumber = Contact(PhoneNumber(""))
show(contactWithInvalidPhoneNumber.phoneNumber) // prints nothing
}
private fun show(phoneNumber: PhoneNumber) {
if (phoneNumber is ValidPhoneNumber) {
val phoneNumberScreen = PhoneNumberScreen(phoneNumber)
phoneNumberScreen.render()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment