blob: fc7490aeab1a89a9f5f413da35f1514899c4400e [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;