10 lines
196 B
Plaintext
Vendored
10 lines
196 B
Plaintext
Vendored
>>> throw Exception("hi there")
|
|
java.lang.Exception: hi there
|
|
>>> fun foo() = 2
|
|
>>> foo()
|
|
2
|
|
>>> fun bar() = throw AssertionError()
|
|
>>> bar()
|
|
java.lang.AssertionError
|
|
at Line4.bar(Unknown Source)
|