Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Last active December 29, 2020 10:14
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 PatilShreyas/e150760f2b97d08c4ff7364adc106c54 to your computer and use it in GitHub Desktop.
Save PatilShreyas/e150760f2b97d08c4ff7364adc106c54 to your computer and use it in GitHub Desktop.
fun main() {
doGreet("John Doe")
}
fun doGreet(name: String) {
- val greetMessage = "Good Morning " + name + " 🌅"
+ val greetMessage = "Good Morning $name 🌅"
println(greetMessage) // prints "Good Morning John Doe 🌅"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment