I'm looking for a way to discover the type of an i...
# announcements
b
I'm looking for a way to discover the type of an identifier, including (for example) whether it is nullable. I've gotten this far:
Copy code
val s = "Hello"
  println(s::class)
but that doesn't tell me everything. Pointers appreciated.