blob: ff9c93a3a41304f2f74f8014589ee85e3a29e367 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more contributor
// license agreements; and to You under the Apache License, Version 2.0.
/*
* Hello, world. Plus more
*/
function main(params) {
msg = "Hello, " + params.name + " from " + params.place;
family = "You have " + params.children + " children ";
stats = "and are " + params.height + " m. tall.";
return { greeting: msg, details: family + stats };
}