df5b809b46
- prohibit main(Array<String>) in favor of box(): String - move all script-related code to ScriptGenTest - remove unused environment-creating methods - inline trivial methods & other minor stuff
6 lines
104 B
Kotlin
6 lines
104 B
Kotlin
fun box(): String {
|
|
(0.toLong() as Number?)?.toByte()
|
|
(0 as Int?)?.toDouble()
|
|
return "OK"
|
|
}
|