aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/v4/prototype.3.js
blob: b76f544ee391dc7aa9f804d46c0235bc643f24ad (plain)
1
2
3
4
5
6
7
8
9
10

function foo() {
    this.stuff()
}

foo.prototype.stuff = function() {
    print("this is cool stuff")
}

f = new foo()