blob: ffeaf2327cfcf76b3aca458ce25528428f551eee [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
*/
function main(params) {
msg = "Hello, " + params.name + " from " + params.place;
return { greeting: msg };
}