Skip to content

Instantly share code, notes, and snippets.

@yuanyan
Created July 11, 2013 14:54
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 yuanyan/5976143 to your computer and use it in GitHub Desktop.
Save yuanyan/5976143 to your computer and use it in GitHub Desktop.
var template = 'hi';
exports.run = function(){
template('hi')
}
exports.template = function(hi){
console.log(hi)
}
exports.run();
// what's print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment