Skip to content

Instantly share code, notes, and snippets.

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