_includes/code/hello.js (4 lines of code) (raw):

function main(args) { const name = args && args.name || "stranger"; return { greeting: `Hello ${name}!` }; }