engineer-man / piston

A high performance general purpose code execution engine.
https://emkc.org/run
MIT License
1.95k stars 252 forks source link

Kotlin not working #663

Open ktkk opened 6 months ago

ktkk commented 6 months ago

Executing Kotlin code seemingly doesn't work. I get the following error message: Error: Unable to access jarfile code.jar.

The command I used is

./run kotlin
```kotlin
fun main() {
  println("Hello, world!")
}
```