```class Playground { @Test fun playground() {...
# random
f
Copy code
class Playground {
    @Test fun playground() {
        val executorService = Executors.newFixedThreadPool(1)
        arrayOf("a", "b", "c").forEach {
            executorService.submit {
                println(it)
            }
        }
    }
}