Skip to content

Instantly share code, notes, and snippets.

@cadorn
Created February 11, 2011 21:32
Show Gist options
  • Save cadorn/823078 to your computer and use it in GitHub Desktop.
Save cadorn/823078 to your computer and use it in GitHub Desktop.
HelloWorld CommonJS Program
module.declare([], function(require, exports, module)
{
exports.main = function()
{
module.print("Hello World from Gist!\n");
}
});
{
"main": "main.js"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment