Primary Constructor
In Scala the primary constructor is the body of the class. The class name is followed by a parameter list, which are the constructor arguments. (As with any function, an empty parameter list may be omitted.)
class Foo(x: Int, y: String) {
val xy: String = y * x
/* now...