Theoretical question: A simple kotlin jar ran on a...
# announcements
a
Theoretical question: A simple kotlin jar ran on a server untouched - how long can it hypothetically run before it crashes/exceptions? Or is the jvm mature enough that it won’t? Sort of like nginx that almost never crashes and is always chugging along
j
Copy code
suspend fun main() = suspendCoroutine { }
will run forever and never crash unless it's due to outside factors
👍 1