struggling with composition basics here ``` val i...
# arrow
s
struggling with composition basics here
Copy code
val ios = listOf("a","b","c").k()
        .map { it -> it.toUpperCase() }
        .flatMap { listOf(it,it).k() }
        .map { name -> IO { println(name )}
    }

    ios.forEach {  io ->
        io.unsafeRunSync()
    }`