加入后端工具项目。

This commit is contained in:
2023-02-09 18:36:43 +08:00
parent 8e5dc6e617
commit a5fa62c5d0
6 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
var greetings = "Hello, World!";
console.log(greetings);
var Season;
(function (Season) {
Season[Season["spring"] = 1] = "spring";
Season[Season["summer"] = 2] = "summer";
Season[Season["autumn"] = 3] = "autumn";
Season[Season["winter"] = 4] = "winter";
})(Season || (Season = {}));
;
var today = Season.spring;
console.log(today);