is there a way to do something like `when (v) { &g...
# getting-started
d
is there a way to do something like
when (v) { > 60 -> true }
?
v
when {v > 60 -> true}
😄