sku-pg
Version:
Skulpt is a Javascript implementation of Python 2.x. Python that runs in your browser!
18 lines • 421 B
JavaScript
var Person = makeClass(
/**
@scope Person
*/
{
/**
This is just another way to define a constructor.
@constructs
@param {string} name The name of the person.
*/
initialize: function(name) {
this.name = name;
},
say: function(message) {
return this.name + " says: " + message;
}
}
);