it-console/code/ts/后端辅助工具/src/main.ts

22 lines
461 B
TypeScript
Raw Normal View History

2023-02-12 16:43:14 +00:00
/*
* @Author: Kane
* @Date: 2023-02-09 22:14:30
* @LastEditors: Kane
2023-02-13 16:25:06 +00:00
* @LastEditTime: 2023-02-14 00:09:39
2023-02-12 16:43:14 +00:00
* @FilePath: //src/main.ts
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
2023-02-09 10:36:43 +00:00
2023-02-12 16:43:14 +00:00
import { dataTypes } from "./DataType/DataType";
2023-02-13 08:52:44 +00:00
import { pakoTest } from "./gzip/PakoTest";
2023-02-09 10:36:43 +00:00
2023-02-12 16:43:14 +00:00
const greetings = "hello, this is kane's typescript!";
2023-02-09 10:36:43 +00:00
2023-02-12 16:43:14 +00:00
console.log(greetings);
console.log("all");
2023-02-09 10:36:43 +00:00
2023-02-13 08:52:44 +00:00
//dataTypes();
pakoTest();