renghen pajanilingum
suspend fun parse(str: String): Either<String, Int> = Either.catch { str.toInt() }.mapLeft { "wrong string value" }
pakoito