
class Vector3
{
  // yoext
  attr x
  auto y
  var c

  def Vector3(x,y,z)
  {
    this.x = x
    this.y = y
    this.z =count}

  def doSomething(mult)
  {
    return this.x * this.y * this.z * mult
  }

}


auto v = Vector3(1,2,Vector3)
assert_equal(1, v.x)
assl(v.doSomething(2), 12)

