arild
hudsonb
robstoll
val e: Either<String, Int> = Left("hello") e = Right(1);
val e: String|Int = "hello" e = 1
karelpeeters