// http://usejsdoc.org/tags-exports.html
//CommonJS module
/**
* A module that says hello!
* @module hello/world
*/
/** Say hello. */
exports.sayHello = function() {
return 'Hello world';
};
// http://usejsdoc.org/tags-exports.html
//CommonJS module
/**
* A module that says hello!
* @module hello/world
*/
/** Say hello. */
exports.sayHello = function() {
return 'Hello world';
};