Skip to content

Instantly share code, notes, and snippets.

@dtrailin
Created August 25, 2016 21:48
Show Gist options
  • Select an option

  • Save dtrailin/c2fb2af563a97117a031c8f2870b6ea8 to your computer and use it in GitHub Desktop.

Select an option

Save dtrailin/c2fb2af563a97117a031c8f2870b6ea8 to your computer and use it in GitHub Desktop.
if (x is String){
println(x)
}
// can be replaced with
(x as? String)?.let { println(x) }
@Shamrock-Frost
Copy link
Copy Markdown

Shouldn't that be println(it)?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment