first commit

This commit is contained in:
Sebastian McKenzie
2014-09-28 23:39:22 +10:00
commit c97696c224
167 changed files with 2007 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class Test {
test() {
return 5 + 5;
}
}

View File

@@ -0,0 +1,8 @@
var Test = function () {
function Test() {
}
Test.prototype.test = function () {
return 5 + 5;
};
return Test;
}();