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