1
function run() {
2
print("global run method");
3
}
4
5
var intfObj = {
6
run: function() { print("object run method"); }
7
};