1exports.run = function(a) { 2 if (a < 0) { 3 console.log("less!"); 4 } 5 else { 6 console.log("more!"); 7 } 8}; 9