Skip to content

Instantly share code, notes, and snippets.

@kinsteronline
Created March 18, 2011 14:05
Show Gist options
  • Select an option

  • Save kinsteronline/876119 to your computer and use it in GitHub Desktop.

Select an option

Save kinsteronline/876119 to your computer and use it in GitHub Desktop.
function PitBoss() {
this.version = function() {
return '0.0.0.0.0.1';
};
this.craps = function() {
return('<html><body>CRAP(S)! ver#' + version() + '</body></html>');
};
}
function TableTalk() {
var self = this;
var version = '0.0.0.0.0.0.1a';
self.chit = function(in) {
return '<span class="chatty ' + version + '">' + in + '</span>';
};
self.chat = function(out) {
return '<span class="kathy ' + version + '">' + out + '</span>';
};
}
exports.PitBoss = PitBoss;
exports.TableTalk = TableTalk;
@kinsteronline
Copy link
Copy Markdown
Author

Ack! OO

@kinsteronline
Copy link
Copy Markdown
Author

A little better, next up a prototype version

@derekcroft
Copy link
Copy Markdown

This is gross. The tables module I sent you in my pull request is intended to be totally "prototypal" as it progresses.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment