blob: b76f544ee391dc7aa9f804d46c0235bc643f24ad [file] [log] [blame]
function foo() {
this.stuff()
}
foo.prototype.stuff = function() {
print("this is cool stuff")
}
f = new foo()