how to express that I don't need some part of a de...
# getting-started
h
how to express that I don't need some part of a de-structured variable:
Copy code
val pair: Pair<Int, String> = 1 to "hello"

//NOTE: v is not used and get a IDEA unused warning, anyway to discard it?
val (k, v) = pair

val needK = k * 42