Guest User

Untitled

a guest
Apr 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.16 KB | None | 0 0
  1. class Complex(real: Double, imag: Double) {
  2.     Re: Double = real
  3.     Im: Double = imag
  4.     +(term: Complex): Complex = new Complex(this.Re + term.Re, this.Im + term.Im)
  5. }
Add Comment
Please, Sign In to add comment