Skip to content

Instantly share code, notes, and snippets.

@gahfy
Created December 15, 2020 04:20
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 gahfy/9edd7ac69b7da099af2a4ff3c433675f to your computer and use it in GitHub Desktop.
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