Advertisement
eallik

Untitled

Jan 11th, 2015
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.21 KB | None | 0 0
  1. scala> Right(3)
  2. res8: scala.util.Right[Nothing,Int] = Right(3)
  3.  
  4. scala> Right(3): Right[String, Int]
  5. res9: Right[String,Int] = Right(3)
  6.  
  7. scala> Right(3): Right[Boolean, Int]
  8. res10: Right[Boolean,Int] = Right(3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement