If I type console.log('Hello World'); in node.js it works, I get the "Hello World" message back.
But if I make a "helloworld.js" document with console.log('Hello World'); inside and then type "node helloworld.js" in node then nothing happens.
I have tried placing the script in same folder as node.js but still doesn't work.