Quick question: ``` val b = true when(b) { tr...
# scripting
j
Quick question:
Copy code
val b = true

when(b) {
    true -> "true"
    false -> "false"
}
Should return "true" in ScriptEngine, right?