Skip to content

Instantly share code, notes, and snippets.

@mpociot
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save mpociot/09e4b68384af488e649c to your computer and use it in GitHub Desktop.

Select an option

Save mpociot/09e4b68384af488e649c to your computer and use it in GitHub Desktop.
CommonJS Module
var localVariable;
exports.init = function( foo )
{
Ti.API.info( "I do stuff" );
localVariable = foo;
};
exports.helloWorld = function()
{
Ti.API.info( "Hello " + localVariable );
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment