blob: cbea7b33014edce07356c5ee6e074cc79872098e [file] [log] [blame]
/**
* Print and return the current date.
*/
function main() {
var now = new Date();
console.log('It is now ' + now);
return { date: now };
}