1var print = module.exports = function print(msg) { 2 console.log(msg); 3} 4print.usage = 'Print out a <msg>'; 5 6 7