Skip to content

Instantly share code, notes, and snippets.

@gahfy
Created December 15, 2020 04:20
Show Gist options
  • Select an option

  • Save gahfy/9edd7ac69b7da099af2a4ff3c433675f to your computer and use it in GitHub Desktop.

Select an option

Save gahfy/9edd7ac69b7da099af2a4ff3c433675f to your computer and use it in GitHub Desktop.
fun main(){
print("What is your country? ")
val country = readLine()
val addressStrategy = if(country == "US") getUsAddressStrategy() else getOtherCountryAddressStrategy()
return addressStrategy.promptAddress()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment