Is there anything such as a Kotlin Workspace?
When programming in R using RStudio, one can keep a computation in memory, and then continuously write code to use that computation. In Kotlin we usually execute everything, and we don't save the in-betweens. For instance, I want to create a table from data I pulled from the web, but I forgot to add a comma. I have to pull all the data from the web again to use it.
Of course I could "cache" it in a file or something, but I'm wondering if there's such a thing already.