blob: e9b1be5be001c4cc63f07eb76f62d887c947a441 [file] [log] [blame]
var obj = {
x: 10,
y: 20,
dump: function() { print("hello", this.x, this.y) }
}
print(obj.x, obj.y, obj.dump)
obj.dump()