Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created April 11, 2018 14:48
Show Gist options
  • Save sajjadyousefnia/7ee6beb3853fa5dc250af400acb854b0 to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/7ee6beb3853fa5dc250af400acb854b0 to your computer and use it in GitHub Desktop.
fun hello(name: String): String {
return "Hello $name"
}
val message = hello("Chike")
print(message) // will print "Hello Chike"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment