blob: 7d8e8a46501000a7e80ce10482f6a2fa2e7a9e44 [file] [log] [blame]
function main(params) {
const msg = 'Hello, ' + params.name + ' from ' + params.place;
const family = 'You have ' + params.children + ' children ';
const stats = 'and are ' + params.height + ' m. tall.';
return { greeting: msg, details: family + stats };
}
module.exports.main = main;