Skip to content

Instantly share code, notes, and snippets.

@sptramer
Created May 17, 2011 00:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sptramer/975677 to your computer and use it in GitHub Desktop.
Save sptramer/975677 to your computer and use it in GitHub Desktop.
// ---- app.js ----
Titanium.include('foo/bar.js');
Ti.API.info('X is :'+x);
// ---- foo/bar.js ----
Titanium.include('baz.js');
// ---- foo/baz.js ----
Titanium.include('/x.js');
// ---- x.js ----
x = 'Hello!';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment