Skip to content

Instantly share code, notes, and snippets.

@jwalgemoed
Last active September 14, 2018 13:39
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 jwalgemoed/9a1ef76bf20547c71995c6ce66baad62 to your computer and use it in GitHub Desktop.
Save jwalgemoed/9a1ef76bf20547c71995c6ce66baad62 to your computer and use it in GitHub Desktop.
fun printUserDetails(user: User?) {
if(user?.isValid()) {
println("${user.name} ${user.email}")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment