Closed
Description
I'm using kotlin-jupyter-kernel 0.7.40.145 and a cell with the following code (and syntactic error) produces no output:
data class Person(val name: String, val age: Int)
val example = Person("Testperson"; age = 4)
println(example)
As evident in this screen shot:
Whenever I make a different kind of error, such as leaving out a parameter (as in Person("foo")
), I get a helpful message in red below the cell. There should be a similar error message when mistaking ;
for ,
.