ChaiScript/unittests/memberscope.chai
2011-09-24 12:05:08 -06:00

13 lines
176 B
ChaiScript

attr Vector3::x
attr Vector3::y
attr Vector3::z
def Vector3::Vector3(x, y, z) {
this.x = x
this.y = y
this.z = z
}
auto v = Vector3(1,2,3);
assert_equal(1, v.x);