What might keep a Kotlin executable from exiting after main() has finished?
a
araqnid
05/01/2020, 8:11 PM
the JVM stops when all non-daemon threads have exited : you probably have some other thread running. use jstack or a debugger etc to get a thread dump.