What might keep a Kotlin executable from exiting a...
# announcements
m
What might keep a Kotlin executable from exiting after main() has finished?
a
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.