加入后端工具项目。
This commit is contained in:
12
code/ts/后端辅助工具/target/main.js
Normal file
12
code/ts/后端辅助工具/target/main.js
Normal 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);
|
Reference in New Issue
Block a user