11 lines
186 B
ChaiScript
11 lines
186 B
ChaiScript
|
|
// tests more complex parses of the index operator
|
|
|
|
def Bob::bob3() { return [1,2,3]; }
|
|
def Bob::Bob() {}
|
|
var b = Bob();
|
|
|
|
|
|
assert_equal(b.bob3()[0], 1);
|
|
assert_equal((b.bob3())[1], 2);
|