Skip to content

Instantly share code, notes, and snippets.

View chrivers's full-sized avatar

Christian Iversen chrivers

View GitHub Profile
var FooClass = function()
{
x = function() { /* Class constructor */ };
x.prototype.foo = "bar";
x.prototype.__init__ = function()
{
this.something = "other";
};
x.prototype.__call__ = function() {
return 42;