Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.13 KB | None | 0 0
  1. class My(x: Int) {
  2.     val foo = x*x
  3.     def \ (that: Int) = this.foo + that.foo
  4. }
  5.  
  6. val x = new My(10)
  7. val y = new My(5)
  8. x \ y   // 75
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement