Get the right value B of this Either, or compute a default value with the left value A.
import arrow.core.Eitherimport arrow.core.getOrElseimport io.kotest.matchers.shouldBefun test() { Either.Left(12) getOrElse { it + 5 } shouldBe 17}