Does anyone know why this snippet does not compile...
# arrow-contributors
i
Does anyone know why this snippet does not compile in ANK:
Copy code
kotlin:ank:playground
import arrow.core.Some
  
//sampleStart
val someInt = Some(1).map { it + 1 }
//SampleEnd
 
fun main() {
   println("value = $someInt")
}