Sebastian McKenzie c97696c224 first commit
2014-09-28 23:39:22 +10:00

9 lines
130 B
JavaScript

var Test = function () {
function Test() {
}
Test.prototype.test = function () {
return 5 + 5;
};
return Test;
}();